(tool: ToolName)
| 92 | } |
| 93 | |
| 94 | export function isReadTool(tool: ToolName): boolean { |
| 95 | return tool === "read_file" || tool === "read"; |
| 96 | } |
| 97 | |
| 98 | export function isWriteTool(tool: ToolName): boolean { |
| 99 | return tool === "write_file" || tool === "write"; |
no outgoing calls
no test coverage detected