Skip to main content

haystack-velesdb

A Haystack 2.x DocumentStore backed by VelesDBthe explainable, local-first memory engine for AI agents (microsecond vector search is the proof, not the pitch). For the connected why() recall trail across typed links, see velesdb-memory.

This integration joins the existing LangChain and LlamaIndex connectors, completing the trio of major Python RAG frameworks supported by VelesDB.

Installation

pip install haystack-velesdb

For development:

pip install -e "integrations/haystack[dev]"

Quick start

from haystack_velesdb import VelesDBDocumentStore
from haystack.dataclasses import Document

store = VelesDBDocumentStore(
    path="./my_docs",
    collection_name="knowledge_base",
    embedding_dim=768,
    metric="cosine",
)

# Write pre-embedded documents
documents = [
    Document(id="doc1", content="VelesDB is fast.", embedding=[0.1, 0.2, ...]),
    Document(id="doc2", content="Local-first AI memory.", embedding=[0.3, 0.4, ...]),
]
store.write_documents(documents)

# Retrieve by vector
results = store.embedding_retrieval(query_embedding=[0.1, 0.2, ...], top_k=5)
for doc in results:
    print(doc.content, doc.score)

Full RAG pipeline

See examples/rag_pipeline.py for a complete PDF ingestion and semantic search example using SentenceTransformersDocumentEmbedder.

from haystack import Pipeline
from haystack.components.converters import PyPDFToDocument
from haystack.components.embedders import (
    SentenceTransformersDocumentEmbedder,
    SentenceTransformersTextEmbedder,
)
from haystack.components.preprocessors import DocumentSplitter
from haystack.components.writers import DocumentWriter
from haystack_velesdb import VelesDBDocumentStore

store = VelesDBDocumentStore(path="./rag_store", embedding_dim=384)

# Indexing pipeline
indexer = Pipeline()
indexer.add_component("converter", PyPDFToDocument())
indexer.add_component("splitter", DocumentSplitter(split_by="sentence", split_length=3))
indexer.add_component("embedder", SentenceTransformersDocumentEmbedder(model="all-MiniLM-L6-v2"))
indexer.add_component("writer", DocumentWriter(document_store=store))
indexer.connect("converter", "splitter")
indexer.connect("splitter", "embedder")
indexer.connect("embedder", "writer")
indexer.run({"converter": {"sources": ["paper.pdf"]}})

# Query pipeline. `InMemoryEmbeddingRetriever` is bound to `InMemoryDocumentStore`
# and would NOT work against a custom DocumentStore — use the shipped
# `VelesDBEmbeddingRetriever` instead (like `QdrantEmbeddingRetriever` in the
# Qdrant integration, no hand-rolled `@component` wrapper needed). Full working
# example in `integrations/haystack/examples/rag_pipeline.py`.
from haystack_velesdb import VelesDBEmbeddingRetriever

querier = Pipeline()
querier.add_component("embedder", SentenceTransformersTextEmbedder(model="all-MiniLM-L6-v2"))
querier.add_component("retriever", VelesDBEmbeddingRetriever(document_store=store))
querier.connect("embedder.embedding", "retriever.query_embedding")
result = querier.run({"embedder": {"text": "What is VelesDB?"}})
print(result["retriever"]["documents"])

API reference

VelesDBDocumentStore

Parameter Default Description
path "./velesdb_haystack" Directory where VelesDB persists data
collection_name "haystack_documents" VelesDB collection name
embedding_dim 768 Embedding vector dimension
metric "cosine" Distance metric: "cosine", "euclidean", "dot", "hamming", or "jaccard"
scroll_limit 10_000 Max documents returned by filter_documents(); raise for collections bigger than this

Methods

Method Description
write_documents(documents, policy, sparse_vectors=None) Upsert documents; returns count written. sparse_vectors is an optional list aligned with documents — each entry a flat dict[int, float] or a named dict[str, dict[int, float]] mapping (e.g. {"bge_m3": {0: 1.5}}); a named mapping creates that sparse index for later hybrid retrieval
stream_insert(documents, sparse_vectors=None) Insert documents through VelesDB's streaming ingestion channel in one call (append-only, no DuplicatePolicy check); returns count inserted. See "Note on streaming ingestion" below
write_documents_streaming(documents, policy, sparse_vectors=None, batch_size=100) Same DuplicatePolicy semantics as write_documents, but sent through the streaming channel in batch_size-sized chunks — better throughput for large bulk loads. See "Note on streaming ingestion" below
flush() Flush pending changes to disk. See "Note on streaming ingestion" below
filter_documents(filters) Scroll documents matching a VelesDB filter dict, up to scroll_limit
embedding_retrieval(query_embedding, top_k, filters, scale_score, fusion=None, fusion_params=None) Vector similarity search. fusion selects a velesdb.FusionStrategy ("average", "maximum", "rrf", "weighted", "relative_score" / "rsf") applied via Collection.multi_query_search, changing the ranking; fusion_params configures it (e.g. {"dense_weight": 0.7, "sparse_weight": 0.3} for "rsf"). filters cannot be combined with fusion
count_documents() Total document count
delete_documents(document_ids) Delete by Haystack string IDs
train_pq(m=8, k=256, opq=False) Train Product Quantization on the collection
analyze_collection() Compute and persist collection statistics (point/row counts, column stats)
get_collection_stats() Return cached statistics from the last analyze_collection() call, or None
is_metadata_only() Whether the current collection holds no vectors
create_metadata_collection(name) Create a metadata-only collection (no vectors), joinable with vector collections
to_dict() / from_dict() Haystack pipeline serialisation

Note on DuplicatePolicy: NONE and OVERWRITE use VelesDB upsert semantics and always overwrite on collision. FAIL is fully enforced: a pre-scan is performed before writing and DuplicateDocumentError is raised if any document already exists (prefer OVERWRITE or NONE for bulk loads to skip the scan cost).

Note on document IDs and SHA-256: Haystack string IDs are mapped to 63-bit integers using the first 8 bytes of SHA-256 (~9.2 × 10¹⁸ slots). For a 1 M-document collection the collision probability is roughly 5 × 10⁻¹⁴, which is negligible for typical RAG workloads. A ValueError is raised at write time if a collision is detected between a new document and an existing one.

Note on scale_score: When True (default), cosine similarity scores are normalised from [-1, 1] to [0, 1] so they behave like probabilities in downstream re-ranking.

Note on streaming ingestion: stream_insert() and write_documents_streaming() forward to the underlying velesdb.Collection.stream_insert, which requires the collection to have enable_streaming() called on it first — the same caller-managed contract as the LangChain and LlamaIndex integrations (see docs/reference/ECOSYSTEM_PARITY.md). The channel batches asynchronously on its own background interval (engine default ~50ms), so a point may not be immediately visible to reads right after either call returns; flush() flushes pending changes to disk but does not guarantee streaming-channel visibility.

Running tests

cd integrations/haystack
pip install -e ".[dev]"
pytest tests/ -v

Tests use lightweight fake VelesDB objects — no running server required.

Release files for haystack-velesdb 5.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for haystack-velesdb 5.0.0
File Size Uploaded
haystack_velesdb-5.0.0.tar.gz 33.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for haystack-velesdb 5.0.0
File Interpreter ABI Platform
haystack_velesdb-5.0.0-py3-none-any.whl Python 3 none any Details

Total release size: 49.7 kB

Release files / haystack_velesdb-5.0.0.tar.gz

Download URL haystack_velesdb-5.0.0.tar.gz
Size 33.0 kB
Tags Source
SHA-256 checksum
How to use checksums
fd930cd9f942886bc24be0e2d0d8ae6c6db5bc242474b5619b6ba8c4f74880a1
BLAKE2b-256 checksum
How to use checksums
d2bcb5007dc03db1d948e3bb8b9383a46ad36d0f703182045af8a1960b4737e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / haystack_velesdb-5.0.0-py3-none-any.whl

Download URL haystack_velesdb-5.0.0-py3-none-any.whl
Size 16.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a78b1ff66dfe9bb2d9a61f58f36d2e87f917d6c274cfb2573e6046417ef412ee
BLAKE2b-256 checksum
How to use checksums
d4616bcbdcd90c751701c2f67568b820f96e0832e272a19218f9749f16f1d46e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release history Release notifications | RSS feed

6.0.0

2 release files

5.2.0

2 release files

5.1.0

2 release files

This release

5.0.0 This release

2 release files

4.2.0

2 release files

4.1.0

2 release files

4.0.0

2 release files

3.12.0

2 release files

3.11.0

2 release files

3.10.0

2 release files

3.9.1

2 release files

3.8.1

2 release files

3.8.0

2 release files

3.7.0

2 release files

3.6.0

2 release files

3.5.0

2 release files

3.4.0

2 release files

3.3.0

2 release files

3.2.1

2 release files

3.2.0

2 release files

3.1.0

2 release files

3.0.1

2 release files

3.0.0

2 release files

2.0.0

2 release files

1.16.0

2 release files

1.15.0

2 release files

1.14.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page