Skip to main content

TraceLens / 迹镜

TraceLens is a friendly evaluation and regression-testing framework for AI agents. It turns agent runs into inspectable traces, graded outcomes, baseline comparisons, and CI-ready reliability signals.

迹镜是一个面向 AI Agent 的评测与回归检测框架。它把每次 agent run 转化成可观察的轨迹、可评分的结果、可比较的 baseline,以及可用于 CI 的可靠性信号。

📖 Documentation: https://ssf0409.github.io/tracelens/  •  📦 PyPI: pip install tracelens

Why TraceLens

Agents are non-deterministic. Unit tests are not enough. TraceLens helps teams capture agent traces, grade outcomes, compare against baselines, and block regressions in CI.

Use it when you need to answer questions like:

  • Did this agent produce the right outcome, not just run without crashing?
  • Is a flaky success still a real capability after 3–5 attempts?
  • Did a prompt, model, tool, or infra change regress a baseline?
  • Can CI block unsafe or lower-quality agent behavior before it ships?

It supports both subjective evaluation (LLM-as-judge for quality) and objective evaluation (schema validity, tool-use constraints, latency, budget, or domain-specific metrics) — and keeps harness failures separate from agent failures so a broken eval never looks like a regression.

Install

# Recommended: uv
uv pip install tracelens

# Or: plain pip
pip install tracelens

For the repository examples and local development tools:

git clone https://github.com/ssf0409/tracelens.git
cd tracelens
uv pip install -e ".[dev]"

See Installation for extras ([llm], [http], [datasets]) and CI setup.

5-Minute Demo

python examples/hello_world.py
tracelens report --results examples/reports/hello_world_report.json --format markdown

Expected first output:

tracelens hello-world
--------------------
trials run : 9
pass rate  : 100%
report json: examples/reports/hello_world_report.json
sample md  : examples/reports/hello_world_report.md

The checked-in sample report shows the concrete pieces a real eval needs: tasks, trials, pass@k, pass^k, graders, baseline comparison, regression result, and CI summary.

To start inside your own project:

tracelens init .
tracelens run \
  --eval-set eval/tasks.json \
  --adapter eval.adapter.StarterAdapter \
  --graders eval.grader.StarterGrader

tracelens init writes user-owned starter files under eval/ plus a GitHub Actions workflow. It refuses to overwrite generated files unless you pass --force.

What an eval looks like

Four pieces — Task, Adapter, Grader, Runner — and a report:

import asyncio
from tracelens import (
    Task, EvalSet, SimpleAdapter, CodeGrader,
    EvaluationRunner, RunnerConfig, Transcript,
)
from tracelens.reporting.generator import ReportGenerator

# 1. Define tasks
eval_set = EvalSet(name="Math Suite", tasks=[
    Task(name="Add 2+3", input_data={"a": 2, "b": 3}, metadata={"expected": 5}),
    Task(name="Add 10+20", input_data={"a": 10, "b": 20}, metadata={"expected": 30}),
])

# 2. Wrap your agent
async def math_agent(input_data: dict) -> dict:
    return {"answer": input_data["a"] + input_data["b"]}

adapter = SimpleAdapter(math_agent)

# 3. Write a grader
class MathGrader(CodeGrader):
    def compute_metrics(self, transcript: Transcript, task: Task) -> dict[str, float]:
        return {"correct": float(transcript.final_output["answer"] == task.metadata["expected"])}

    def determine_pass(self, metrics: dict[str, float], task: Task) -> tuple[bool, float]:
        return metrics["correct"] == 1.0, metrics["correct"]

# 4. Run and report
batch = asyncio.run(EvaluationRunner(adapter, [MathGrader("math")], RunnerConfig(num_runs=3)).run(eval_set))
print(ReportGenerator().render_markdown(ReportGenerator().build_report(batch)))

Walkthrough: Getting Started (5 min). Ready for a non-toy agent? Evaluating a Real Agent.

Documentation

The full, searchable docs live at https://ssf0409.github.io/tracelens/. Highlights:

Start here Concepts Guides
Is TraceLens For You? Core Concepts & Glossary Evaluating a Real Agent
Getting Started (5 min) pass@k vs pass^k Baseline Regression Tutorial
TraceLens vs Adjacent Tools Accuracy Best Practices Human-Eval Calibration
Installation Multi-Level Evaluation CI/CD Integration

Also: Build Your First Eval · User Guide · Loading Task Data · Evaluation Recipes · API Reference · Examples · Roadmap · Contributor Testing · Releasing.

Contributing

TraceLens is MIT licensed and open to contributions. Start with CONTRIBUTING.md, then run the local verification gate:

make verify   # lock check -> lint -> typecheck -> tests + coverage

Security issues should be reported privately using SECURITY.md.

Key Design Principles

  1. Grade outcomes, not execution paths — focus on what the agent produced.
  2. Handle non-determinism — pass@k for capability, pass^k for reliability.
  3. Start with 20–50 real failure cases — build suites from actual issues.
  4. Read transcripts regularly — catch false signals and grader bugs.
  5. Calibrate with human evaluation — LLM graders drift without it.
  6. Separate harness failures from agent failures — track infra/grader error rates alongside pass rates.

Informed by Anthropic's Demystifying Evals for AI Agents.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tracelens-0.4.0.tar.gz (449.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tracelens-0.4.0-py3-none-any.whl (110.6 kB view details)

Uploaded Python 3

File details

Details for the file tracelens-0.4.0.tar.gz.

File metadata

  • Download URL: tracelens-0.4.0.tar.gz
  • Upload date:
  • Size: 449.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tracelens-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4c6b36ff1089ad6736b13aefccd7f1e26ec5cf70235c4dc5ec101069babb013f
MD5 a2222e3cefc2f8c7396b237accc3761e
BLAKE2b-256 19b119f088c1b328b8db165d4e36f25f31d3e2332593b2b04f72833d2c873f09

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracelens-0.4.0.tar.gz:

Publisher: release.yml on ssf0409/tracelens

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tracelens-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: tracelens-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 110.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tracelens-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2e13c72f48254500e0bbdb21cb0e4fd5d792590a649c2578fff2cd6091e49fd4
MD5 fac14f4daeebb74017cd447afa9fea78
BLAKE2b-256 6832e8dc9d022a975f928acb16ba0161c9b897e9c98dec76f2fedc20f79a5674

See more details on using hashes here.

Provenance

The following attestation bundles were made for tracelens-0.4.0-py3-none-any.whl:

Publisher: release.yml on ssf0409/tracelens

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.0

2 files

This release

0.4.0 This release

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

0.1.0

2 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