Skip to content

Commit 249abba

Browse files
committed
fix naming
1 parent e20ff59 commit 249abba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gemini-api/src/main/java/swiss/ameri/gemini/api/FunctionCall.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
* A predicted FunctionCall returned from the model that contains a string representing the FunctionDeclaration.name
77
* with the arguments and their values.
88
*
9-
* @param name Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 63.
10-
* @param format Optional. The function parameters and values in JSON object format.
9+
* @param name Required. The name of the function to call. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 63.
10+
* @param args Optional. The function parameters and values in JSON object format.
1111
*/
1212
public record FunctionCall(
1313
String name,
14-
Map<String, ?> format
14+
Map<String, ?> args
1515
) {
1616
}

0 commit comments

Comments
 (0)