search_files
Find relevant documents in the RAG system using semantic search with customizable similarity thresholds and result limits.
Instructions
Search for relevant documents in the RAG system
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default: 10) | |
| query | Yes | Search query to find relevant documents | |
| threshold | No | Minimum similarity threshold (0-1, default: 0.7) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results to return (default: 10)",
"type": "number"
},
"query": {
"description": "Search query to find relevant documents",
"type": "string"
},
"threshold": {
"default": 0.7,
"description": "Minimum similarity threshold (0-1, default: 0.7)",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}