Learn more about Mintlify
Enter your email to receive updates about new features and product releases.
Store and search embeddings
from agno.vectordb.pgvector import PgVector
vector_db = PgVector(
table_name="knowledge",
db_url="postgresql://localhost/agno"
)
from agno.vectordb.chromadb import ChromaDb
vector_db = ChromaDb(
collection="docs",
path="./chroma_db"
)
from agno.vectordb.lancedb import LanceDb
vector_db = LanceDb(
table_name="knowledge",
uri="./lancedb"
)