File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spring-ai-core/src/main/java/org/springframework/ai/chat/client/advisor/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ public record AdvisedRequest(
89
89
"userText cannot be null or empty unless messages are provided and contain Tool Response message." );
90
90
Assert .notNull (media , "media cannot be null" );
91
91
Assert .noNullElements (media , "media cannot contain null elements" );
92
- Assert .notNull (toolNames , "functionNames cannot be null" );
93
- Assert .noNullElements (toolNames , "functionNames cannot contain null elements" );
92
+ Assert .notNull (toolNames , "toolNames cannot be null" );
93
+ Assert .noNullElements (toolNames , "toolNames cannot contain null elements" );
94
94
Assert .notNull (toolCallbacks , "toolCallbacks cannot be null" );
95
95
Assert .noNullElements (toolCallbacks , "toolCallbacks cannot contain null elements" );
96
96
Assert .notNull (messages , "messages cannot be null" );
You can’t perform that action at this time.
0 commit comments