You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: models/spring-ai-vertex-ai-gemini/src/main/java/org/springframework/ai/vertexai/gemini/VertexAiGeminiChatModel.java
Copy file name to clipboardExpand all lines: models/spring-ai-vertex-ai-gemini/src/main/java/org/springframework/ai/vertexai/gemini/VertexAiGeminiChatOptions.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -418,13 +418,13 @@ public Builder toolCallbacks(ToolCallback... toolCallbacks) {
418
418
}
419
419
420
420
publicBuildertoolNames(Set<String> toolNames) {
421
-
Assert.notNull(toolNames, "Function names must not be null");
421
+
Assert.notNull(toolNames, "Tool names must not be null");
422
422
this.options.toolNames = toolNames;
423
423
returnthis;
424
424
}
425
425
426
426
publicBuildertoolName(StringtoolName) {
427
-
Assert.hasText(toolName, "Function name must not be empty");
427
+
Assert.hasText(toolName, "Tool name must not be empty");
Copy file name to clipboardExpand all lines: models/spring-ai-vertex-ai-gemini/src/test/java/org/springframework/ai/vertexai/gemini/VertexAiGeminiChatModelIT.java
0 commit comments