Caliby: Open-Source Embedded Vector Database for AI Agents with Hybrid Text+Vector Storage

Caliby is now open-source: an embedded, in-process vector database designed for AI Agent and RAG workloads. Developed by a team including a PhD from MIT’s DB Group (Michael Stonebraker’s team) and Sea-Land AI, it's a single C++ library with Python bindings.
Why Another Vector DB?
The team found existing solutions lacking for agent/LLM use cases:
- FAISS: Pure in-memory, no persistence — restart clears the index.
- pgvector: Performance ceiling due to PostgreSQL dependency.
- Chroma / Qdrant / Milvus: Require separate services, too heavy for embedded scenarios.
- LanceDB: Embedded but lacks advanced indexes like DiskANN, performance bottlenecks.
Caliby aims to be a lightweight, embeddable data engine like DuckDB, but for vector + text storage.
Architecture: Hybrid Text + Vector Storage
Caliby unifies text and vector data in a single system. Instead of juggling a vector DB and a relational DB, you store embeddings, raw text, and metadata in one library. The architecture uses a page-organized buffer pool for persistence.
Supported Indexes
- HNSW: General high-performance retrieval, CPU-optimized.
- DiskANN (Vamana Graph): Designed for disk-based scenarios, outperforms FAISS on disk.
- IVF+PQ: Inverted file with product quantization for compact indexes.
Caliby also supports brute-force search with SIMD (AVX-512, AVX2, SSE) distance functions (L2, InnerProduct, Cosine).
Performance Claims
Caliby beats pgvector by 4x and significantly surpasses FAISS in disk-storage scenarios. It handles millions to tens of millions of vectors on disk without requiring a separate service.
Getting Started
Simply install the package:
pip install caliby
The Python API exposes HnswIndex, DiskANN, and IVFPQIndex classes via pybind11. No dependencies, no server setup, no DevOps.
Who It's For
AI Agent developers and RAG pipeline builders who want an embeddable, zero-infrastructure vector database with hybrid text+vector capabilities and production-grade performance.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Cascade Graph: Interactive Map of AI Energy Constraints and Supply Chokepoints
The Cascade Graph is a directed knowledge graph of the physical economy, mapping 405 nodes (drivers, chokepoints, geographies, tickers) connected by 597 sourced edges to trace how structural pressure cascades from energy and physics constraints through to investable assets.

Open Source Skill for Parallel AI Coding Agents with Human Gate
A markdown skill definition for running parallel Claude Code agents in separate git worktrees, with integration branch validation, smoke tests, and a hard human gate before production merge.

Brackish: Let Two Claude Code Instances Negotiate an API Contract via OpenAPI 3.1
Brackish is a CLI tool that runs between two Claude Code sessions — one on the backend (FastAPI) and one on the frontend (React/TypeScript) — to negotiate an API contract via a shared OpenAPI 3.1 document. It surfaces disagreements before code is written.

Vibeyard adds P2P session sharing for Claude Code
Vibeyard, an open-source IDE for Claude Code, now supports peer-to-peer session sharing. Users can share live terminal sessions with teammates over encrypted WebRTC connections with read-only or read-write access modes.