(tool: ToolName)
| 100 | } |
| 101 | |
| 102 | export function isEditTool(tool: ToolName): boolean { |
| 103 | return tool === "edit_file" || tool === "edit" || tool === "apply_patch"; |
| 104 | } |
| 105 | |
| 106 | export function isSearchTool(tool: ToolName): boolean { |
| 107 | return tool === "grep_files" || tool === "find_files" || tool === "grep" || tool === "glob"; |
no outgoing calls
no test coverage detected