We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e69967 commit 8f2346dCopy full SHA for 8f2346d
foundation-models/openai/src/main/java/com/sap/ai/sdk/foundationmodels/openai/OpenAiTool.java
@@ -187,7 +187,7 @@ public static List<OpenAiToolMessage> execute(
187
* @return a map that contains the function calls and their respective tool results.
188
*/
189
@Nonnull
190
- protected static Map<OpenAiFunctionCall, Object> executeInternal(
+ private static Map<OpenAiFunctionCall, Object> executeInternal(
191
@Nonnull final List<OpenAiTool> tools, @Nonnull final OpenAiAssistantMessage msg) {
192
final var result = new LinkedHashMap<OpenAiFunctionCall, Object>();
193
final var toolMap = tools.stream().collect(Collectors.toMap(OpenAiTool::getName, identity()));
0 commit comments