pinecone_create_index_for_model
Create a Pinecone index with a hosted embedding model so records embed on write and queries embed on read, without an external provider.
Instructions
Create an index with a hosted embedding model attached.
Pinecone embeds text_field on write and embeds queries on read, so
no embedding provider is needed on this side. Read it back with
pinecone_search_records. The model cannot be changed later.
Args:
model: Hosted model, e.g. "llama-text-embed-v2",
"multilingual-e5-large", "pinecone-sparse-english-v0".
text_field: Record field holding the raw text to embed.
filterable_fields: e.g. {"genre": {"filterable": true}}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| tags | No | ||
| cloud | No | ||
| model | No | llama-text-embed-v2 | |
| metric | No | ||
| region | No | ||
| timeout | No | ||
| dimension | No | ||
| text_field | No | chunk_text | |
| read_capacity | No | ||
| read_parameters | No | ||
| write_parameters | No | ||
| filterable_fields | No | ||
| deletion_protection | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||