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
Prompt prompt = new Prompt(userText, ToolCallingChatOptions.builder().toolCallbacks(functionCallbacks).build());
or one can pass tools to the ChatClient e.g.
Is it correct to assume that if tools are passed into the prompt then one can have prompt specific tools and you don't have to pass them separately whereas tools passed to the client directly might be more suitable for prompt independent tools?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
One can create a Prompt with tools e.g
Prompt prompt = new Prompt(userText, ToolCallingChatOptions.builder().toolCallbacks(functionCallbacks).build());
or one can pass tools to the ChatClient e.g.
Is it correct to assume that if tools are passed into the prompt then one can have prompt specific tools and you don't have to pass them separately whereas tools passed to the client directly might be more suitable for prompt independent tools?
Beta Was this translation helpful? Give feedback.
All reactions