vector_store_search
Search a vector collection using natural-language queries. Auto-matches the embedding provider/model used at creation, with optional overrides.
Instructions
Semantic search over a collection using the same embedding route as vector_store_add.
By default, the query embedding is auto-matched to the collection's stored provider/model. Use provider/model/dimensions to override.
Args: collection: Collection name used with vector_store_add. query: Natural-language query. limit: Max results (1–50). provider: Embedding provider override for the query (openai, voyage, gemini, local). Empty = auto-detect from collection. model: Embedding model override (e.g. "voyage-code-3"). Empty = auto-detect from collection. dimensions: Output dimensions override (integer as string). Empty = auto-detect.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| model | No | ||
| query | Yes | ||
| provider | No | ||
| collection | Yes | ||
| dimensions | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |