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
ToolCallback interface definition currently only supports String as return type.
publicinterfaceToolCallback {
/** * Execute tool with the given input and return the result to send back to the AI * model. */Stringcall(StringtoolInput);
}