What problem does it solve? Building semantic search and RAG systems requires efficient vector storage, indexing, and similarity querying, which is complex to implement from scratch and slow with traditional databases. ## Core Features & Use Cases - Vector Storage & Search: Store document embeddings and run similarity queries with HNSW indexing, cosine/euclidean/dot metrics, and sub-millisecond retrieval. - Hybrid & MMR Search: Combine vector similarity with metadata filters and use Maximal Marginal Relevance for diverse, non-redundant results. - Quantization & CLI Tooling: Reduce memory 4-32x with binary, scalar, or product quantization, and manage databases via the agentdb CLI (init, query, import, export, stats). - Use Case: Build a RAG pipeline where user questions are embedded, matched against a knowledge base of stored document vectors, and the retrieved context is passed to an LLM for answer generation. ## Quick Start Initialize an AgentDB vector database and store my documents with embeddings so I can run semantic similarity searches against them.