pytest for LLMs — Write fast, zero-cost tests for your AI prompts, and optimize them automatically when they fail.
ghostrun gives you the two things most Gen AI developers end up building from scratch: a way to write reliable, offline-ready prompt tests, and a way to automatically optimize those prompts when they break. Both live in plain Python and plain pytest — no cloud dashboards, no complex YAML, no extra test harnesses.
Is this for you? · Install · Quickstart · Prompt Optimization · Documentation · Roadmap
[!TIP] TDD for LLMs (Test-Driven Prompts): Instead of guessing prompts in a notebook, write your test and criteria first (using
ghostrun.expect), then let the optimizer (ghostrun craft) automatically tune the prompt instructions and few-shots to pass the test.
The Problem: Why LLM testing is frustrating
Building an AI application usually leaves you with three painful problems:
- Slow & Expensive Tests: Every time you run
pytest, your test suite calls OpenAI/Anthropic APIs, costing you money and taking forever to finish. - Brittle Exact Assertions: LLM outputs change slightly on every run. Writing
assert reply == "expected"fails randomly because the LLM used a different word. - The Prompt Guessing Game: When you edit a prompt to fix one edge case, you have no easy way to know if you silently broke another output somewhere else.
How ghostrun fixes it
ghostrun solves all three issues by bringing standard software testing workflows to AI:
- Fast & Free Tests (Deterministic Replay): Wrap your test in
@ghostrun.record. The first run hits the real API and saves the response; every run after replays it instantly from disk. Tests run in 0.05 seconds, cost nothing, and run fully offline in CI. - No More Flakiness (Semantic Assertions): Assert on meaning and intent instead of exact text.
ghostrun.expect(reply).tone_is("empathetic")is graded by a free, local judge (via Ollama) so your data stays private. - Self-Healing Prompts (Optimizers): If your prompt fails the test, run
ghostrun craftwith your target criteria and training examples. The optimizer automatically searches for the best instructions and few-shot examples to pass your tests.
No SaaS dashboards. No complicated YAML. Just Python and pytest.
Search terms this project is built for: LLM evals in CI, LLM regression testing, pytest LLM evals, deterministic LLM tests, prompt engineering framework, prompt optimization, few-shot example selection, semantic assertions for LLM apps, and testing OpenAI or Anthropic applications with pytest.
Install
pip install ghostrun
For the default (local, free, private) judge, install Ollama and pull a small model:
ollama pull llama3.2:3b
If anything doesn't work, ghostrun doctor diagnoses the setup — see
Configuration.
Fastest start: ghostrun init scaffolds a working first test against
whatever LLM SDK it finds in your project (OpenAI, Anthropic, or a generic
HTTP fallback) plus a .ghostrun.yaml — no config to author by hand:
ghostrun init
pytest test_ghostrun_example.py
Quickstart
# test_customer_support.py
import ghostrun
from my_app import generate_reply
@ghostrun.record(model="gpt-4o-mini")
def test_reply_generation():
reply = generate_reply("Where is my refund?")
ghostrun.expect(reply).contains_intent("apology")
ghostrun.expect(reply).contains_intent("refund policy")
ghostrun.expect(reply).does_not_contain_intent("arguing")
ghostrun.expect(reply).tone_is("empathetic")
$ pytest test_customer_support.py
================================ test session starts ================================
collected 1 item
test_customer_support.py . [100%]
================================ 1 passed in 0.04s =================================
The 0.04s is the whole point — after the first record, calls replay from disk.
Note on the API: the assertion entry point is
ghostrun.expect(...), notghostrun.assert(...)—assertis a reserved Python keyword and cannot be a function name.
Record/replay alone needs no Ollama at all — the judge is only touched when
you call a judge-backed assertion (contains_intent, tone_is, matches).
Deterministic assertions (contains, is_valid_json) and tool-call assertions
never invoke it.
Prompt Optimization (ghostrun craft)
Where @ghostrun.record and expect(...) test an existing prompt, ghostrun craft builds and optimizes one.
Instead of hand-writing brittle prompts and guessing edge cases, declare a typed input/output signature ("inputs -> outputs") and let ghostrun craft automatically search for winning instructions and discover high-value few-shot demonstrations:
from ghostrun.craft import craft
# Automatically synthesize prompt instructions & select passing few-shots
crafted = craft(
name="refund_classifier",
signature="customer_message -> is_refund_request, urgency",
examples_path="dataset/support_queries.jsonl",
criterion="Accurately flags refund requests and evaluates urgency",
model="gpt-4o-mini",
budget=10, # Bayesian search over instruction candidates & demo bootstrapping
)
print(crafted.instructions)
# Resulting prompt artifacts and demos are saved locally for test replay
Or optimize directly from the CLI:
ghostrun craft refund_classifier \
--signature "customer_message -> is_refund_request, urgency" \
--examples dataset.jsonl \
--criterion "Accurately flags refund requests and evaluates urgency" \
--model gpt-4o-mini
Interactive Tactical Companion (ghostrun pet)
GhostRun includes a borderless, transparent desktop tactical companion with 9 real-time animated states that react to your development workflow:
ghostrun run test_app.py # Runs tests & triggers victory celebration dance on 0.04s replay
ghostrun pet # Launches transparent floating companion on screen
ghostrun pet --anim thinking # Hyper-speed thinking animation
- Interactive Controls: Left-click to cycle through all 9 animations (
idle,running,jumping,waving,review,waiting,failed), drag anywhere across multiple monitors, or click the hover red✕button to dismiss. - Workflow Triggers:
ghostrun init→ 👋wavingwelcome greeting.ghostrun run→ 🏆jumpingcelebration on passing tests / 💀failedon regression.ghostrun craft→ 🎖️reviewtactical salute on discovering winning prompts.
Learn more in the Prompt Crafting Guide.
Is this for you?
Use ghostrun if you're writing pytest tests around code that calls an LLM (directly or via the OpenAI/Anthropic SDKs) and want that suite to run offline, free, and deterministically after the first recording.
Skip it if you need a hosted dashboard/observability platform for production traffic (see Langfuse/LangSmith/Braintrust instead), you're building a red-team/adversarial test suite (see Giskard), or you want 50+ pre-built judge metrics out of the box today (see DeepEval — more mature, more metrics, but doesn't intercept your app's own HTTP calls the way ghostrun does). See doc/comparison.md for the full, researched breakdown of where ghostrun is ahead and where it's duplicating existing work.
Documentation
Start here, in order:
| Guide | What's in it |
|---|---|
| LLM regression testing | CI-native LLM evals for catching semantic and prompt regressions in real app code |
| Pytest LLM evals | How to write LLM evals as normal pytest tests instead of dashboard-only workflows |
| Test OpenAI apps offline | Record/replay OpenAI and Anthropic API calls so CI does not repeat live model calls |
| doc/guide/recording.md | How record/replay works, judge-verdict caching, supported providers, secret redaction, parallel test runs |
| doc/guide/assertions.md | Semantic assertions, judge reliability (benchmarked, not asserted), majority-vote verdicts, tool/function-call assertions |
| doc/guide/craft.md | Prompt synthesis, signatures (input -> output), Bayesian instruction search, and few-shot bootstrapping |
| doc/guide/configuration.md | .ghostrun.yaml, environment variables, pytest flags, ghostrun doctor, ghostrun init |
Deeper reference, once you're past the basics
| Guide | What's in it |
|---|---|
| doc/guide/regression-tracking.md | Snapshotting runs, ghostrun diff, posting a regression as a PR comment, JUnit CI integration |
| doc/guide/api-reference.md | Every public function, class, exception, and config field |
| doc/guide/why-not-diy.md | The actual bugs found building this — the case for a maintained package over a five-minute prompt |
| doc/judge-voting-benchmark.md | Full methodology and results for the majority-vote judge-caching benchmark |
| doc/comparison.md | Researched comparison against DeepEval, Promptfoo, Ragas, vcr-langchain, and 9 other tools |
| CHANGELOG.md | Release notes |
A hosted, searchable version of this documentation is planned at
ghostrun.parthmax.tech (config
in mkdocs.yml, builds via .github/workflows/docs.yml).
Roadmap
- Deterministic HTTP record/replay (
@ghostrun.record,.ghostrun_cache/) - Semantic assertions (
contains_intent,tone_is,matches) via local Ollama or an offlineechostub - Judge-verdict caching, including majority-vote grading (
judge.votes) with a benchmarked reliability tradeoff - Tool/function-call assertions (
expect_tool_calls) - Prompt synthesis & optimization (
ghostrun craft,Signature,BootstrapFewShot,BayesianSearch) - Prompt regression tracking —
ghostrun diff, PR-comment and JUnit CI output -
ghostrun init/ghostrun doctor— scaffolding and setup diagnostics in one command - Secret redaction so the cache is safe to commit
- 16-provider HTTP coverage (OpenAI, Anthropic, Gemini, Bedrock, and more)
- Published to PyPI with trusted-publishing (OIDC) releases
- Hosted, searchable documentation site (
mkdocs.ymlready; not yet deployed) - Broader provider/framework integration guides
Contributing
See CONTRIBUTING.md — setup, test requirements, and where things live in the codebase.
Development
pip install -e ".[dev]"
pytest # runs fully offline using the echo judge
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 ghostrun-2.0.5.tar.gz.
File metadata
- Download URL: ghostrun-2.0.5.tar.gz
- Upload date:
- Size: 18.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 |
e2d84d83302ec28598c0b14b18af55dfa13d9b2d6f8e1a11861f0c4c2a347137
|
|
| MD5 |
2b21232b900d3a14034b12173deb0565
|
|
| BLAKE2b-256 |
734a1ff78a711173a8e54be92f0b582d16dafd20369f9b2c0eff29290e01b7a8
|
Provenance
The following attestation bundles were made for ghostrun-2.0.5.tar.gz:
Publisher:
release.yml on parthmax2/ghostrun
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ghostrun-2.0.5.tar.gz -
Subject digest:
e2d84d83302ec28598c0b14b18af55dfa13d9b2d6f8e1a11861f0c4c2a347137 - Sigstore transparency entry: 2636355533
- Sigstore integration time:
-
Permalink:
parthmax2/ghostrun@3bfc1afc86b2a98b240c19cc192ed915289817a2 -
Branch / Tag:
refs/tags/v2.0.5 - Owner: https://github.com/parthmax2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3bfc1afc86b2a98b240c19cc192ed915289817a2 -
Trigger Event:
release
-
Statement type:
File details
Details for the file ghostrun-2.0.5-py3-none-any.whl.
File metadata
- Download URL: ghostrun-2.0.5-py3-none-any.whl
- Upload date:
- Size: 1.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72a08a55413d3c90c288335b13dd1a7653eac615bd53a6cf500e2ecf5895a4f7
|
|
| MD5 |
fd0dbf3bcad7ab469b7848a738ee4a79
|
|
| BLAKE2b-256 |
0fde036831062a62cfbe7a17ba87c62c66535e0c604614c53ecb076996e30655
|
Provenance
The following attestation bundles were made for ghostrun-2.0.5-py3-none-any.whl:
Publisher:
release.yml on parthmax2/ghostrun
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ghostrun-2.0.5-py3-none-any.whl -
Subject digest:
72a08a55413d3c90c288335b13dd1a7653eac615bd53a6cf500e2ecf5895a4f7 - Sigstore transparency entry: 2636355611
- Sigstore integration time:
-
Permalink:
parthmax2/ghostrun@3bfc1afc86b2a98b240c19cc192ed915289817a2 -
Branch / Tag:
refs/tags/v2.0.5 - Owner: https://github.com/parthmax2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3bfc1afc86b2a98b240c19cc192ed915289817a2 -
Trigger Event:
release
-
Statement type: