diff options
Diffstat (limited to 'src/context/tools/batch-search-files.json')
| -rw-r--r-- | src/context/tools/batch-search-files.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/context/tools/batch-search-files.json b/src/context/tools/batch-search-files.json new file mode 100644 index 0000000..feb8749 --- /dev/null +++ b/src/context/tools/batch-search-files.json @@ -0,0 +1,25 @@ +{ + "id": "batch_search_files", + "label": "Batch Search File Names", + "description": "Run multiple file-name searches in one call.", + "friendlyName": "Batch Search Files", + "requiresApproval": false, + "batchOf": "search_files", + "definition": { + "type": "function", + "function": { + "name": "batch_search_files", + "description": "Run multiple file-name searches in a single call. Each query searches vault file names/paths independently. Use this when you need to search for several different terms at once instead of calling search_files repeatedly.", + "parameters": { + "type": "object", + "required": ["queries"], + "properties": { + "queries": { + "type": "string", + "description": "A JSON array of search query strings. Example: [\"meeting notes\", \"project plan\", \"2024\"]" + } + } + } + } + } +} |
