Deterministic regression enforcement for LLM systems.
Project description
Phylax
Deterministic regression enforcement for LLM systems.
The Problem
LLM outputs change unexpectedly. Same prompt, different model version → different behavior. Without Phylax, you discover this in production.
Installation
pip install phylax
For server/UI support:
pip install phylax[server]
For all LLM providers:
pip install phylax[all]
Quick Start
import phylax
from phylax._internal.decorator import trace
from phylax._internal.context import execution
from phylax._internal.adapters.gemini import GeminiAdapter
@trace(provider="gemini")
def ask_gemini(prompt: str):
"""Traced Gemini call."""
adapter = GeminiAdapter()
response, _ = adapter.generate(
prompt=prompt,
model="gemini-2.5-flash",
)
return response
# Single call
result = ask_gemini("Hello!")
print(result.text)
# Track multi-step agent flows
with execution() as exec_id:
step1 = ask_gemini("What is 2+2?")
step2 = ask_gemini("Is that correct?")
# Start the UI server
phylax server
# Open http://127.0.0.1:8000/ui
# Mark a known-good response as baseline
phylax bless <trace_id>
# In CI: fail if output regresses
phylax check # exits 1 on failure
That's it. Your CI now blocks LLM regressions.
What Phylax is NOT
- ❌ Not monitoring — no metrics, no dashboards
- ❌ Not observability — no traces-to-cloud, no analytics
- ❌ Not AI judgment — rules are deterministic, not LLM-based
- ❌ Not cloud-dependent — runs entirely local
- ❌ Not prompt engineering — tests outputs, not prompts
Phylax is a test framework. It tells you when LLM behavior changes.
Using the Web UI
pip install phylax[server]
phylax server
# Open http://127.0.0.1:8000/ui
The UI shows:
- Trace list with pass/fail status
- Execution graphs for multi-step flows
- Forensics mode for debugging
CI Integration
# .github/workflows/phylax.yml
- run: phylax check
env:
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
Exit codes:
0— All golden traces pass1— Regression detected
Commands
| Command | What it does |
|---|---|
phylax init |
Initialize config |
phylax server |
Start API server + UI |
phylax list |
List traces |
phylax list --failed |
Show only failed traces |
phylax show <id> |
Show trace details |
phylax replay <id> |
Re-run a trace |
phylax bless <id> |
Mark as golden baseline |
phylax check |
CI regression check |
Features
| Feature | Description |
|---|---|
| Trace Capture | Record every LLM call automatically |
| Execution Context | Group traces by execution() context |
| Golden Traces | Baseline comparisons with hash verification |
| CI Integration | phylax check exits 1 on regression |
| Web UI | View traces at http://127.0.0.1:8000/ui |
| Forensics Mode | Debug failures with guided investigation |
Stability Guarantee
Phylax v1.x is API-frozen:
- No breaking changes in v1.x
trace,executionare stable- Exit codes are stable
- Schema is stable
See docs/contract.md for full guarantees.
Documentation
License
MIT License
Project details
Release history Release notifications | RSS feed
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 phylax-1.0.2.tar.gz.
File metadata
- Download URL: phylax-1.0.2.tar.gz
- Upload date:
- Size: 6.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d20d44510c3a21ac6d1ed2980c940ab209167cf598eeaf9906765dbfcf64399
|
|
| MD5 |
b4cbd3cebf992d67eaf0f944ed201559
|
|
| BLAKE2b-256 |
0c460a297c122cf4eaeecf48d11b1699b90272d3fa495bb7be604789d3ba6eba
|
File details
Details for the file phylax-1.0.2-py3-none-any.whl.
File metadata
- Download URL: phylax-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.8 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e522f4bc5abf728d2d1c084063c57e6e808d588d4ca65e18d64baa01abe739be
|
|
| MD5 |
32981e7cdad5d83a602010956d604b5c
|
|
| BLAKE2b-256 |
4b73dfd4d9d3517a46c2a1710133491767aee4194473d42edcda4cd9991ba6bb
|