VectorDbs
Pinecone Agent Knowledge
Example
agent_with_knowledge.py
PineconeDB Params
Parameter | Type | Default | Description |
---|---|---|---|
name | str | - | The name of the table to use. |
dimension | int | - | The dimension of the table to use. |
spec | Union[Dict, ServerlessSpec, PodSpec] | - | The spec of the table to use. |
embedder | Optional[Embedder] | None | The embedder to use for encoding vectors. If not provided, a default embedder will be used. |
metric | Optional[str] | "cosine" | The distance metric to use for similarity search. |
additional_headers | Optional[Dict[str, str]] | None | Additional headers to include in API requests. |
pool_threads | Optional[int] | 1 | The number of threads to use for the connection pool. |
namespace | Optional[str] | None | The namespace to use for the index. |
timeout | Optional[int] | None | The timeout for API requests in seconds. |
index_api | Optional[Any] | None | A custom index API implementation to use instead of the default. |
api_key | Optional[str] | None | The API key for authentication with Pinecone. |
host | Optional[str] | None | The host URL for the Pinecone service. |
config | Optional[Config] | None | Additional configuration options for the Pinecone client. |
use_hybrid_search | bool | False | Whether to use hybrid search (combining vector and keyword search). |
hybrid_alpha | float | 0.5 | The alpha parameter for hybrid search, balancing between vector and keyword search. |