vector_store_vector_search
Search for nearest neighbors in a vector store using cosine, euclidean, or dot product metric. Returns matching items with similarity scores and metadata, sorted by relevance.
Instructions
[vector_store] Find nearest neighbours. metric: cosine|euclidean|dot. Returns [{id, score, metadata}] sorted by score.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| query | Yes | ||
| top_k | No | ||
| metric | No | ||
| threshold | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |