search
Find similar documents in a specified collection using semantic search. Input a query, choose an embedding service, and retrieve relevant results for efficient information discovery.
Instructions
Search for similar documents in a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Name of the collection to search in | |
embeddingService | Yes | Embedding service to use | |
limit | No | Maximum number of results to return (optional) | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Name of the collection to search in",
"type": "string"
},
"embeddingService": {
"description": "Embedding service to use",
"enum": [
"openai",
"openrouter",
"fastembed",
"ollama"
],
"type": "string"
},
"limit": {
"description": "Maximum number of results to return (optional)",
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query",
"collection",
"embeddingService"
],
"type": "object"
}