Vector Stores for Agents
Vector stores give your Agents the ability to store and retrieve knowledge from large document collections. This enables RAG (Retrieval Augmented Generation) where Agents can answer questions based on your custom data.Quick Start
Agent with Vector Store Knowledge
Supported Vector Stores
| Store | Description | Best For |
|---|---|---|
| Pinecone | Managed vector database | Production Agents |
| Weaviate | Open-source with GraphQL | Hybrid search Agents |
| Qdrant | High-performance | Self-hosted Agents |
| Chroma | Lightweight, embedded | Development/Testing |
| Memory | In-memory | Unit testing Agents |
Agent with RAG Tool
Create a tool that lets your Agent search the vector store:Multi-Agent with Shared Knowledge
Multiple Agents can share the same vector store:Agent that Builds Knowledge
An Agent can add documents to the vector store:Vector Store Setup
Pinecone
Weaviate
Qdrant
Memory (Testing)
Environment Variables
Related
Knowledge Base
Knowledge Base
Graph RAG
Graph RAG

