placeborag
Deterministic test doubles for the retrieval half of a RAG pipeline.
Existing mock LLM tooling stubs the chat completion endpoint and hands back pseudo-random embedding vectors of the correct shape. Correct shape, no semantic structure. Any document can come back at any rank, so every retrieval assertion in your test suite is decorative: you can assert that the pipeline ran, not that it retrieved the right thing.
placeborag gives you an embedder that is a pure function whose output geometry you can reason about — offline, in microseconds, with no model and no network.
Install
pip install placeborag
Use
from placeborag import FakeEmbedder, cosine_similarity
embedder = FakeEmbedder()
query = embedder.embed("refund policy")
related = embedder.embed("what is your refund policy for orders")
unrelated = embedder.embed("delivery times to remote islands")
assert cosine_similarity(query, related) > cosine_similarity(query, unrelated)
The same text always gives the same vector, so a top-k assertion is stable across runs and across machines:
assert embedder.embed("refund policy") == embedder.embed("refund policy")
Changing model_name changes the embedding space, which is what makes the "we swapped the embedding model and have to reindex" code path testable:
a = FakeEmbedder(model_name="text-embedding-3-small")
b = FakeEmbedder(model_name="text-embedding-3-large")
assert a.embed("refund policy") != b.embed("refund policy")
Every vector is L2-normalized, including for the empty string and for non-ASCII input.
Steering what is near what
Hashing gets you meaningful ordering for free, but sometimes a test needs to state outright that these three phrasings mean the same thing. Declare a cluster:
from placeborag import FakeEmbedder, cosine_similarity
embedder = FakeEmbedder(clusters={
"refund": ["refund policy", "money back", "hogyan kérek vissza pénzt"],
"shipping": ["delivery times", "szállítási idő"],
})
assert cosine_similarity(
embedder.embed("refund policy"), embedder.embed("money back")
) > cosine_similarity(
embedder.embed("refund policy"), embedder.embed("delivery times")
)
Any text you did not declare falls through to the hashing layer unchanged, so clusters are additive — you steer the handful of phrases the test is actually about and leave the rest alone.
If your pipeline chunks documents, use cluster_match="substring". By default declarations match byte for byte, and a chunked pipeline never stores the exact text you declared — so the declaration quietly does nothing. Substring mode pulls any text containing a declared member into that cluster, with its own vector:
embedder = FakeEmbedder(
clusters={"refund": ["refund policy allows returns"]},
cluster_match="substring",
)
chunk = "Our refund policy allows returns within 30 days. Refunds are"
assert embedder.cluster_of(chunk) == "refund"
Matching is case-sensitive, and the longest declaration wins when several apply.
The declaration is checked when the embedder is constructed, not when a test later fails mysteriously. If the geometry cannot satisfy what you declared, you get a ValueError naming the offending similarities:
FakeEmbedder(clusters={"a": ["same text"], "b": ["same text"]})
# ValueError: 'same text' is declared in more than one cluster ('a' and 'b')
Each cluster has an anchor you can query with. The cosine between an anchor and one of its members is exactly 1 / sqrt(1 + jitter**2) — no dimension term — so ranking a cluster's members against their anchor gives the same order at dimensions=64 and dimensions=1024:
anchor = embedder.cluster_anchor("refund")
ranked = sorted(
["refund policy", "money back"],
key=lambda text: -cosine_similarity(anchor, embedder.embed(text)),
)
Ranking members against each other does not carry that guarantee: that angle involves two jitter directions, and it does depend on the dimension.
The bug you cannot currently unit test
Post-filtering applies your metadata filter after the top-k cut, so it can return fewer results than you asked for. Same query, same k, same data — different answer, depending only on which backend you are pointed at:
from placeborag import FakeEmbedder, FakeVectorStore
KNOWLEDGE_BASE = [
("en-1", "our refund policy allows returns within 30 days", "en"),
("en-2", "refund policy exceptions for sale items", "en"),
("en-3", "how to request a refund under the refund policy", "en"),
("en-4", "refund policy for digital purchases", "en"),
("hu-1", "pénzvisszatérítési szabályzat harminc napon belül", "hu"),
("hu-2", "hogyan kérek vissza pénzt vásárlás után", "hu"),
]
def build(filter_mode):
store = FakeVectorStore(embedder=FakeEmbedder(), filter_mode=filter_mode)
for doc_id, text, lang in KNOWLEDGE_BASE:
store.upsert(doc_id, text, metadata={"lang": lang})
return store
pre = build("pre").query("refund policy", k=5, where={"lang": "hu"})
post = build("post").query("refund policy", k=5, where={"lang": "hu"})
assert len(pre) == 2 # both Hungarian documents
assert len(post) == 1 # one of them fell outside the top-5 before filtering
That second assertion is the bug that ships to production. It is not a crash and not an empty result — just a quietly incomplete answer.
Metadata filters
Equality, or operators:
store.query("refund policy", k=5, where={"lang": "hu"})
store.query("refund policy", k=5, where={"year": {"$gte": 2024, "$lt": 2026}})
store.query("refund policy", k=5, where={"lang": {"$in": ["hu", "de"]}})
store.query("refund policy", k=5, where={
"$or": [{"tier": "public"}, {"year": {"$gt": 2025}}],
})
Available: $eq, $ne, $in, $nin, $gt, $gte, $lt, $lte, $and, $or.
Two rules worth knowing, because both are choices rather than accidents:
- A key the record does not carry never matches, whatever the operator.
{"lang": {"$ne": "hu"}}will not surface records with no language at all — "absent" is not a value to compare against. - A malformed clause raises, before any record is read. An unknown operator, a
$inwithout a list, or a numeric bound against a string is a bug in the filter, not a record that happens not to match. A filter that silently excludes everything looks exactly like one that works.
Score conventions
Chroma-style backends return a distance, where lower is better. Qdrant-style backends return a score, where higher is better. Point the same code at the other one and your sort is reversed:
from placeborag import FakeVectorStore
chroma = FakeVectorStore(profile="chroma") # distance, lower is better
qdrant = FakeVectorStore(profile="qdrant") # similarity, higher is better
assert chroma.profile.higher_is_better is False
assert qdrant.profile.higher_is_better is True
Both profiles rank documents in the same relevance order — only the reported number differs. A test that passes on one profile and fails on the other has a sort direction bug.
Ties are broken deterministically, and the two profiles break them differently: Chroma-style by insertion order, Qdrant-style by id. Real stores differ here too, and the difference stays invisible until a test flakes in CI.
pytest fixtures
Installing placeborag registers two fixtures. They are a thin layer over the library — everything below is reachable from a plain script or a notebook too.
def test_retrieval(fake_vector_store):
fake_vector_store.upsert("doc", "our refund policy allows returns")
matches = fake_vector_store.query("refund policy", k=1)
assert matches[0].id == "doc"
Configure them per test with the placeborag marker:
@pytest.mark.placeborag(
profile="qdrant",
filter_mode="post",
clusters={"refund": ["refund policy", "money back"]},
)
def test_post_filtering_under_returns(fake_vector_store):
...
Embedder options (model_name, dimensions, clusters, cluster_spread) and store options (profile, filter_mode) go in the same marker and are routed to the right object. A misspelled option raises instead of being silently ignored.
How it works
Character n-grams and word tokens are hashed into dimensions buckets with a signed hashing trick, summed, and normalized. Texts sharing tokens land near each other. There is no training data and no model file — the seed is derived from (text, model_name, dimensions).
That makes the ranking explainable to whoever reads the failing test, which is the part random vectors can never give you.
Embedding 10,000 short strings takes well under a second on one core, so a full test suite can embed freely without a fixture cache.
Status
0.3.0 is the current release and contains everything documented above.
Pre-1.0 in the way that matters: vectors are stable within a version, not across versions. Assert on relative ordering, never on stored coordinates. (0.0.1 produces different coordinates than later versions; the ordering behaviour is the same.)
Next up:
- more backend profiles: Qdrant is modelled, FAISS and Weaviate are not
- failure injection on the retrieval path: timeouts, partial index, degraded recall
- an orphaned-id quirk: real stores can leave a deleted id in the index
A worked example
examples/ has a small RAG pipeline — chunking, indexing, retrieval, generation — and the tests you can write against it. Including the one where post-filtering returns nothing at all, and the one where swapping the embedding model silently invalidates the index.
Why this exists
Longer version, with the three bugs random mock vectors hide: Your RAG tests are asserting that the pipeline ran.
What this is not
Not an eval framework, not a benchmark, not a production vector store, and not another OpenAI-compatible mock server.
A fake embedder cannot tell you whether your retrieval quality is good — nothing offline can, and RAGAS and DeepEval occupy that space properly. It tells you whether your retrieval plumbing is correct: sort direction, filter ordering, the reindex path, tie-breaking.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file placeborag-0.3.0.tar.gz.
File metadata
- Download URL: placeborag-0.3.0.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11cb560a32c1c1388360b8fd8b712deb09687e77778e765f078c6b648d08a93f
|
|
| MD5 |
0de686f06d8fd3c5bdb08b23d59c4b59
|
|
| BLAKE2b-256 |
e563c2b32c97ffbf455eb0af99842141624b36e82263c1f842f11346434a0342
|
Provenance
The following attestation bundles were made for placeborag-0.3.0.tar.gz:
Publisher:
publish.yml on elaz48/placeborag
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
placeborag-0.3.0.tar.gz -
Subject digest:
11cb560a32c1c1388360b8fd8b712deb09687e77778e765f078c6b648d08a93f - Sigstore transparency entry: 2280372283
- Sigstore integration time:
-
Permalink:
elaz48/placeborag@160e99a1dd63c09e28498ffb96fae687098cceba -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/elaz48
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@160e99a1dd63c09e28498ffb96fae687098cceba -
Trigger Event:
push
-
Statement type:
File details
Details for the file placeborag-0.3.0-py3-none-any.whl.
File metadata
- Download URL: placeborag-0.3.0-py3-none-any.whl
- Upload date:
- Size: 20.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e148d17530ce0b617b6682c14c14b1ab0d49707a33a7eaed66bf38efb725c2e
|
|
| MD5 |
0eaec45df5a928d848d253ec5d7c4c1c
|
|
| BLAKE2b-256 |
7ece586d2a67434cc8926b283def4cab8a0b2f381d76c524727811df10fc278a
|
Provenance
The following attestation bundles were made for placeborag-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on elaz48/placeborag
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
placeborag-0.3.0-py3-none-any.whl -
Subject digest:
6e148d17530ce0b617b6682c14c14b1ab0d49707a33a7eaed66bf38efb725c2e - Sigstore transparency entry: 2280372298
- Sigstore integration time:
-
Permalink:
elaz48/placeborag@160e99a1dd63c09e28498ffb96fae687098cceba -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/elaz48
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@160e99a1dd63c09e28498ffb96fae687098cceba -
Trigger Event:
push
-
Statement type: