pinecone_query_vectors
Query a Pinecone index to find the nearest-neighbor vectors for a given input vector, with optional filtering and metadata inclusion.
Instructions
Query a Pinecone index for nearest-neighbor vectors.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | Yes | Pinecone API key | |
| index_host | Yes | Index host URL from describe_index (e.g. https://my-index-xxx.svc.pinecone.io) | |
| vector | Yes | Query vector (array of floats matching index dimension) | |
| top_k | No | Number of nearest neighbors to return (default: 10) | |
| namespace | No | Namespace to query | |
| include_metadata | No | Include metadata in results (default: true) | |
| include_values | No | Include vector values in results | |
| filter | No | Metadata filter object |