Pinecone's serverless vector database lets you deliver remarkable GenAI applications faster.
Pinecone is the vector database that helps power AI for the world’s best companies
Create an account and your first index in 30 seconds, then upload a few vector embeddings from any model… or a few billion.
Perform low-latency vector search to retrieve relevant data for search, RAG, recommendation, detection, and other applications.
Pinecone is serverless so you never have to worry about managing or scaling the database.
from pinecone import Pinecone, ServerlessSpec
# Create a serverless index
# "dimension" needs to match the dimensions of the vectors you upsert
pc = Pinecone(api_key="YOUR_API_KEY")
pc.create_index(name="products", dimension=1536,
spec=ServerlessSpec(cloud='aws', region='us-east-1')
)
# Target the index
index = pc.Index("products")
# Mock vector and metadata objects (you would bring your own)
vector = [0.010, 2.34,...] # len(vector) = 1536
metadata = {"id": 3056, "description": "Networked neural adapter"}
# Upsert your vector(s)
index.upsert(
vectors=[
{"id": "some_id", "values": vector, "metadata": metadata}
]
)
Combine vector search with familiar metadata filters to get just the results you want.
Fast and accurate vector search over all your data.
As your data changes, the Pinecone index is updated in realtime to provide the freshest results.
Combine vector search with keyword boosting for the best of both worlds (hybrid search).
organizations
recall*
query latency (p95)*
Use Pinecone with your favorite cloud provider, data sources, models, frameworks, and more.
Data source
Embedding model
Pinecone Vector Database
Search application
Join a growing community of 400,000+ ambitious developers building the next generation of applications with Pinecone.
Events
Learn and connect with your peers, in person and online.
Billions
of records in Pinecone
To make our newest Notion AI products available to tens of millions of users worldwide we needed to support RAG over billions of documents while meeting strict performance, security, cost, and operational requirements. This simply wouldn’t be possible without Pinecone.
Akshay Kothari
Co-Founder, Notion
Meet security and operational requirements to bring AI products to market faster.
Control your data and know it’s safe. Pinecone is SOC 2 and HIPAA certified.
Powering mission-critical applications of all sizes, with support SLAs and observability.
Fully managed in the cloud of your choice. Also available via marketplaces: AWS, Azure, GCP.
Create your first index for free, then upgrade and pay as you go when you're ready to scale, or talk to sales.