Skip to content

Commit cda9fb5

Browse files
Sashir Estelasashirestela
Sashir Estela
authored andcommitted
Fix Javadoc
1 parent a126e8d commit cda9fb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/github/sashirestela/openai/common/function/FunctionExecutor.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ public <T> T execute(FunctionCall functionCall) {
9191
* @param <R> Specific type to gather the result. ToolMessage for ChatCompletion or
9292
* ToolOutput for Assistants.
9393
* @param toolCalls Response from the model to call functions.
94-
* @param toolOutputItem BiFunction with two arguments: 'toolCallId' and 'result'. Returns a new <R>
94+
* @param toolOutputItem BiFunction with two arguments: 'toolCallId' and 'result'. Returns a new R
9595
* object with those arguments.
96-
* @return List of <R> objects.
96+
* @return List of R objects.
9797
*/
9898
public <R> List<R> executeAll(List<ToolCall> toolCalls, BiFunction<String, String, R> toolOutputItem) {
9999
List<R> toolOutputs = new ArrayList<>();

0 commit comments

Comments
 (0)