aiexpect
Assertions for non-deterministic AI text. Drop into the tests you already have.
from aiexpect import expect
def test_refund_policy(bot):
reply = bot.ask("What is your refund policy?")
expect(reply).to_mean("you can return items within 30 days") # semantic, no API key
expect(reply).to_be_grounded_in(policy_doc) # no hallucination
expect(reply).to_not_contain_pii().to_have_length(max=600) # deterministic rules
Run pytest as usual. You get normal pass/fail plus a Trust Score and a self-contained HTML report:
================================= aiexpect =================================
Trust Score: 87/100
Accuracy 92 · Groundedness 85 · Relevance 90 · Safety 100 · Consistency 80 · Format 75
41/46 checks passed (89%)
report: /your/project/aiexpect-report.html
pip install aiexpect
Zero dependencies. Works offline out of the box.
Why
Chatbot and LLM output changes every run. assert reply == "..." is useless, and most eval frameworks
want you to adopt a whole new platform. aiexpect is just an assertion library: it slots into pytest next
to your existing tests, and the results roll up into metrics a non-ML person can read.
Three tiers, free first
| Tier | Needs | Assertions |
|---|---|---|
| 1 · Rules | nothing | to_contain, to_contain_any, to_not_contain, to_match, to_not_match, to_have_length, to_be_json, to_match_schema, to_not_contain_pii, to_be_one_of, to_refuse, to_not_refuse, to_satisfy_fn |
| 2 · Semantic | nothing (pip install 'aiexpect[embeddings]' for a real local embedding model) |
to_mean, to_not_mean, to_be_similar_to, to_be_relevant_to, to_match_snapshot |
| 3 · LLM judge | any model you run or pay for: Ollama (free, local), Anthropic, OpenAI, or any OpenAI-compatible server | to_be_grounded_in, to_answer, to_have_tone, to_satisfy(rubric), to_be_consistent_with, to_refuse (escalation) |
Know the limits of Tier 2. Embeddings measure topical similarity, not truth: "sale items cannot be
returned" scores 0.64 against "you can return within 30 days" (measured with all-MiniLM-L6-v2). Use
to_contain/to_not_contain for must-have facts and to_be_grounded_in / to_be_consistent_with (Tier 3)
when negation or contradiction matters.
aiexpect never proxies your traffic. You bring the key; you own the bill. Judge verdicts are cached on disk, so re-running an unchanged suite costs nothing. Is a free local model good enough? Measured answer in docs/judges.md: a 3B Ollama model got 43/44 probe verdicts right at ~2 s each.
Configure a judge (only needed for Tier 3)
# free, local (llama3.2 is 2 GB and fits an 8 GB laptop; use llama3.1 with 16 GB+)
ollama pull llama3.2
export AIEXPECT_JUDGE=ollama:llama3.2
# or a cloud model
export ANTHROPIC_API_KEY=... # auto-detected; uses claude-opus-5 at low effort
export AIEXPECT_JUDGE=anthropic:claude-haiku-4-5 # cheaper
export AIEXPECT_JUDGE=openai:gpt-4o-mini
export AIEXPECT_JUDGE=openai-compatible:qwen2.5@http://localhost:8000/v1 # vLLM, LM Studio, Groq...
or in conftest.py:
import aiexpect
aiexpect.configure(judge="ollama:llama3.2", judge_threshold=0.7)
Flaky by nature? Measure it.
import aiexpect
@aiexpect.consistent(samples=5, min_pass_rate=0.8)
def test_greeting(bot):
expect(bot.ask("hi")).to_have_tone("friendly")
Runs the body 5 times and passes on the pass-rate, not a single coin flip. Feeds the Consistency sub-score.
Semantic snapshots
def test_refund_policy(bot):
expect(bot.ask("refund policy?")).to_match_snapshot()
First run stores the reply in __aisnapshots__/. Later runs compare by meaning, so rewording passes and a
real change in what the bot says fails. Refresh with pytest --aiexpect-update-snapshots; forbid silent creation
in CI with --aiexpect-snapshot-mode=strict.
Hallucination probe pack
from aiexpect import probes
@pytest.mark.parametrize("probe", probes.all(), ids=lambda p: p.id)
def test_hallucination_probe(bot, probe):
probes.check(bot.ask(probe.question), probe)
22 curated questions that reliably expose fabrication: false premises ("Name the current King of France"), true-but-surprising premises ("Are sharks older than trees?") and plain facts. Keyword answer keys work offline; with a judge configured, paraphrased corrections are recognised too.
The report
pytest writes aiexpect-report.html (and .json) every run:
- Trust Score (0–100) = mean of six plain-English sub-scores: Accuracy, Groundedness, Relevance, Safety, Consistency, Format
- pass rate per assertion type, score distribution, per-test table, Trust Score trend across runs
- every check with the judge's reason, expandable, filterable (failed only / LLM-judged)
- single file, no CDN, light and dark mode, colour-blind-safe palette
CI gate: pytest --aiexpect-min-trust=80 fails the run when the Trust Score drops below 80.
GitHub Action: Trust Score as a PR comment
- run: pytest --aiexpect-json=aiexpect-report.json
- uses: dmsehgal/aiexpect@v0.3.1
with:
min-trust: 80 # optional gate
# needs: permissions: { pull-requests: write }
Posts (and updates) one comment per PR with the Trust Score, sub-scores and failed checks, and writes the same table to the job summary.
CLI
aiexpect check "Return within 30 days" --contain "30 days" --no-pii --mean "30-day returns"
aiexpect report aiexpect-report.json -o report.html
aiexpect summary aiexpect-report.json --min-trust 80
aiexpect judge # which judge would be used?
Testing a real web page (Playwright)
from aiexpect import expect
def test_search_snippet_is_relevant(page): # `page` comes from pytest-playwright
page.goto("https://en.wikipedia.org/w/index.php?fulltext=1&search=python+testing+framework")
snippet = page.locator(".mw-search-result .searchresult").first.inner_text()
expect(snippet).to_be_relevant_to("software testing framework") # text changes; meaning shouldn't
expect(snippet).to_contain_any("test", "testing").to_not_contain_pii()
pip install pytest-playwright && playwright install chromium, then pytest. Same idea for a chat widget:
locate the bot's last message bubble and hand its text to expect(). Full example in
examples/playwright.
Soft mode
e = expect(reply, soft=True).to_contain("30 days").to_not_contain_pii().to_be_json()
e.verify() # raises once with every failure listed
How it compares
| aiexpect | DeepEval | promptfoo | Ragas | |
|---|---|---|---|---|
| Fits into an existing pytest suite | ✅ one import | ✅ pytest-style | ❌ YAML runner | ❌ notebook/eval loop |
| Works with no API key | ✅ Tier 1 + 2 | ❌ judge required for most metrics | partial | ❌ |
| Zero dependencies | ✅ | ❌ | ❌ (Node) | ❌ |
| Local Ollama judge | ✅ | ✅ | ✅ | ✅ |
| Flakiness as a measured pass-rate | ✅ @consistent |
❌ | repeat option | ❌ |
| Semantic snapshot testing | ✅ | ❌ | ❌ | ❌ |
| Plain-English Trust Score + HTML report | ✅ single file | cloud dashboard | web viewer | ❌ |
| Built for | QA / test engineers | ML engineers | prompt engineers | RAG researchers |
They are good tools with different centres of gravity. If you already run evals in one of them, keep doing so; aiexpect is for the tests next to your product code.
Roadmap
- TypeScript port with Jest/Vitest matchers, Playwright fixture, Cypress commands
- Judge agreement benchmark across more models (see docs/judges.md for the first result)
- More probe packs (multi-turn contradiction, instruction following)
Contributing
git clone https://github.com/dmsehgal/aiexpect && cd aiexpect
uv venv && uv pip install -e ".[dev]" && pytest
The test suite is fully offline (fake judge, lexical embeddings). Adapters for other frameworks and new probe packs are the easiest first contributions — see CONTRIBUTING.md.
MIT © Deep Sehgal
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 aiexpect-0.3.1.tar.gz.
File metadata
- Download URL: aiexpect-0.3.1.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f03482ccb933279ab938381e4619a3bfa11009f35374eb4e71121a272754dd7
|
|
| MD5 |
4db7c63ed2d1479be3848443c2dc5dc7
|
|
| BLAKE2b-256 |
0be2a17bc23673af2488dd5d97ed9dfb224ac41cb52de6f7d295e52d44d411b5
|
Provenance
The following attestation bundles were made for aiexpect-0.3.1.tar.gz:
Publisher:
publish.yml on dmsehgal/aiexpect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiexpect-0.3.1.tar.gz -
Subject digest:
9f03482ccb933279ab938381e4619a3bfa11009f35374eb4e71121a272754dd7 - Sigstore transparency entry: 2821733663
- Sigstore integration time:
-
Permalink:
dmsehgal/aiexpect@d8db280eb1b391d97da6da62036e66a62bb900b7 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/dmsehgal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d8db280eb1b391d97da6da62036e66a62bb900b7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file aiexpect-0.3.1-py3-none-any.whl.
File metadata
- Download URL: aiexpect-0.3.1-py3-none-any.whl
- Upload date:
- Size: 42.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3184eadae47d3293768c2d77c635980d33909d1877126d54fbe4da8a6d93ed67
|
|
| MD5 |
c5d620774efd01b2b2e9a478809838d1
|
|
| BLAKE2b-256 |
74fcf992e95c23dc6831a1d4c9ed90eb364141964fda5a6ab251b48ab511b95e
|
Provenance
The following attestation bundles were made for aiexpect-0.3.1-py3-none-any.whl:
Publisher:
publish.yml on dmsehgal/aiexpect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiexpect-0.3.1-py3-none-any.whl -
Subject digest:
3184eadae47d3293768c2d77c635980d33909d1877126d54fbe4da8a6d93ed67 - Sigstore transparency entry: 2821733688
- Sigstore integration time:
-
Permalink:
dmsehgal/aiexpect@d8db280eb1b391d97da6da62036e66a62bb900b7 -
Branch / Tag:
refs/tags/v0.3.1 - Owner: https://github.com/dmsehgal
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d8db280eb1b391d97da6da62036e66a62bb900b7 -
Trigger Event:
release
-
Statement type: