Add search_files tool

This commit is contained in:
Saoud Rizwan
2024-08-30 01:53:31 -04:00
parent fa763ad165
commit 2e438e5df5
7 changed files with 333 additions and 14 deletions

View File

@@ -65,7 +65,10 @@ export interface ClaudeSayTool {
| "listFilesTopLevel"
| "listFilesRecursive"
| "listCodeDefinitionNames"
| "searchFiles"
path?: string
diff?: string
content?: string
regex?: string
filePattern?: string
}

View File

@@ -5,6 +5,7 @@ export type ToolName =
| "read_file"
| "list_files"
| "list_code_definition_names"
| "search_files"
| "execute_command"
| "ask_followup_question"
| "attempt_completion"