| 7 | type ToolInvocationState = "input-available" | "output-available"; |
| 8 | |
| 9 | interface BaseToolInvocation { |
| 10 | type: string; |
| 11 | toolName: string; |
| 12 | state: ToolInvocationState; |
| 13 | input: any; |
| 14 | output?: any; |
| 15 | } |
| 16 | |
| 17 | type ProgressMessage = { |
| 18 | timestamp: string; |
nothing calls this directly
no outgoing calls
no test coverage detected