Pinecone integration (AI, Data). Imported from open-connector.
https://api.pinecone.io/indexes
/indexes/{name}
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | The Pinecone index name. Index names must be unique within a project. |
/indexes/{name}
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | The Pinecone index name. Index names must be unique within a project. |
/describe_index_stats
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| filter | object | optional | The Pinecone metadata filter expression used to select records. |
/vectors/upsert
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| vectors | array | required | The vectors to upsert. |
| namespace | string | optional | The Pinecone namespace to read or write. |
/query
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| values | array | optional | The dense vector values. |
| sparseValues | object | optional | The sparse vector values and indices. |
| id | string | optional | The vector ID to use as the query vector. |
| topK | integer | required | The number of similar vectors to return. |
| namespace | string | optional | The Pinecone namespace to read or write. |
| filter | object | optional | The Pinecone metadata filter expression used to select records. |
| includeValues | boolean | optional | Whether to include vector values in the response. |
| includeMetadata | boolean | optional | Whether to include vector metadata in the response. |
/vectors/fetch
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| ids | array | required | The vector IDs to fetch. |
| namespace | string | optional | The Pinecone namespace to read or write. |
/vectors/list
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| namespace | string | optional | The Pinecone namespace to read or write. |
| prefix | string | optional | The ID prefix used to filter vector IDs. |
| limit | integer | optional | The maximum number of IDs to return. |
| paginationToken | string | optional | The pagination token returned by a previous Pinecone response. |
/vectors/delete
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| ids | array | optional | The vector IDs to delete. |
| namespace | string | optional | The Pinecone namespace to read or write. |
| filter | object | optional | The Pinecone metadata filter expression used to select records. |
| deleteAll | boolean | optional | Whether to delete all records in the namespace. |
/vectors/update
| Param | Type | Required | Description |
|---|---|---|---|
| indexHost | string | required | The full Pinecone index host URL used for data-plane operations, such as https:… |
| id | string | optional | The vector ID to update. |
| values | array | optional | The dense vector values. |
| sparseValues | object | optional | The sparse vector values and indices. |
| setMetadata | object | optional | The metadata object associated with a Pinecone record. |
| namespace | string | optional | The Pinecone namespace to read or write. |
| filter | object | optional | The Pinecone metadata filter expression used to select records. |
| dryRun | boolean | optional | Whether to count matching records without applying the update. |