Pinecone Vector Database

Use Pinecone as a vector database for your Knowledge Base.

Setup

Follow the instructions in the Pinecone Setup Guide to get started quickly with Pinecone.

uv pip install pinecone==5.4.2 pinecone-text typer rich pypdf openai agno

You need pinecone-text for hybrid search (use_hybrid_search=True).

export PINECONE_API_KEY=your_pinecone_api_key_here
export OPENAI_API_KEY=your_openai_api_key_here

We do not yet support Pinecone v6.x.x. We are actively working to achieve compatibility. In the meantime, we recommend using Pinecone v5.4.2 for the best experience.

Example

agent_with_knowledge.py
import os
import typer
from rich.prompt import Prompt

from agno.agent import Agent
from agno.knowledge.knowledge import Knowledge
from agno.vectordb.pineconedb import PineconeDb

api_key = os.getenv("PINECONE_API_KEY")
index_name = "thai-recipe-hybrid-search"

vector_db = PineconeDb(
    name=index_name,
    dimension=1536,
    metric="cosine",
    spec={"serverless": {"cloud": "aws", "region": "us-east-1"}},
    api_key=api_key,
    use_hybrid_search=True,
    hybrid_alpha=0.5,
)

knowledge_base = Knowledge(
    vector_db=vector_db,
)

def pinecone_agent(user: str = "user"):
    agent = Agent(
        knowledge=knowledge_base,
        debug_mode=True,
    )

    while True:
        message = Prompt.ask(f"[bold] :sunglasses: {user} [/bold]")
        if message in ("exit", "bye"):
            break
        agent.print_response(message)

if __name__ == "__main__":
    # Comment out after first run
    knowledge_base.insert(
        url="https://agno-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf"
    )

    typer.run(pinecone_agent)

Async Support ⚡

Pinecone also supports asynchronous operations with ainsert() and aprint_response().

async_pinecone.py
import asyncio
from os import getenv

from agno.agent import Agent
from agno.knowledge.knowledge import Knowledge
from agno.vectordb.pineconedb import PineconeDb

api_key = getenv("PINECONE_API_KEY")
index_name = "thai-recipe-index"

vector_db = PineconeDb(
    name=index_name,
    dimension=1536,
    metric="cosine",
    spec={"serverless": {"cloud": "aws", "region": "us-east-1"}},
    api_key=api_key,
)

knowledge_base = Knowledge(
    vector_db=vector_db,
)

agent = Agent(
    knowledge=knowledge_base,
    # Enable the agent to search the knowledge base
    search_knowledge=True,
    # Enable the agent to read the chat history
    read_chat_history=True,
)

if __name__ == "__main__":
    # Load knowledge base asynchronously
    asyncio.run(knowledge_base.ainsert(
            url="https://agno-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf"
        )
    )

    # Create and use the agent asynchronously
    asyncio.run(agent.aprint_response("How to make Tom Kha Gai", markdown=True))

Use ainsert() and aprint_response() methods with asyncio.run() for non-blocking operations in high-throughput applications.

PineconeDb Params

ParameterTypeDefaultDescription
nameOptional[str]NonePinecone index name. Index creation still requires a usable name.
dimensionint-The dimension of the embeddings
specUnion[Dict, ServerlessSpec, PodSpec]-The index spec
embedderOptional[Embedder]NoneEmbedder instance for creating embeddings (defaults to OpenAIEmbedder if not provided)
metricOptional[str]"cosine"The metric used for similarity search
additional_headersOptional[Dict[str, str]]NoneAdditional headers to pass to the Pinecone client
pool_threadsOptional[int]1The number of threads to use for the Pinecone client
namespaceOptional[str]NoneThe namespace for the Pinecone index
timeoutOptional[int]NoneThe timeout for Pinecone operations
index_apiOptional[Any]NoneThe Index API object
api_keyOptional[str]NoneThe Pinecone API key
hostOptional[str]NoneThe Pinecone host
configOptional[Config]NoneThe Pinecone config
use_hybrid_searchboolFalseWhether to use hybrid search
hybrid_alphafloat0.5The alpha value for hybrid search
rerankerOptional[Reranker]NoneRerank retrieved documents.
descriptionOptional[str]NoneDescription of the vector database.
idOptional[str]NoneOptional vector database ID.
**kwargsAnyAdditional client arguments.

Next Steps

TaskGuide
Insert, search, and delete contentPinecone usage
Call async Agno methodsAsync Pinecone usage