Replies: 1 comment
-
|
For file system it is better to use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
According to documentation the tool call notification message has this structure:
{ "jsonrpc": "2.0", "method": "session/update", "params": { "sessionId": "sess_abc123def456", "update": { "sessionUpdate": "tool_call", "toolCallId": "call_001", "title": "Reading configuration file", "kind": "read", "status": "pending" } } }But it doesn't contain the input arguments which model is used for calling a tool. The biggest downside of this the Client can't know which file is read, it only gets file content, which leads to poor UX.
Maybe I didn't find the way how the Client can get tool call arguments.
Beta Was this translation helpful? Give feedback.
All reactions