(tool: ToolName)
| 96 | } |
| 97 | |
| 98 | export function isWriteTool(tool: ToolName): boolean { |
| 99 | return tool === "write_file" || tool === "write"; |
| 100 | } |
| 101 | |
| 102 | export function isEditTool(tool: ToolName): boolean { |
| 103 | return tool === "edit_file" || tool === "edit" || tool === "apply_patch"; |
no outgoing calls
no test coverage detected