Skip to main content

Universal record-and-replay for LLM agents.

Project description

AgentLab

Universal record-and-replay for LLM agents.

Status: pre-alpha, APIs will change.

AgentLab captures model calls, tools, state transitions, and timing into a trace you can replay without hitting the network. It is built around a framework-agnostic core and an HTTP capture layer that works with any SDK that routes requests through httpx.

Overhead

Per-LLM-call cost of running inside agentlab.record():

metric baseline recorded overhead
latency p50 13.5 ms 14.7 ms +1.16 ms
latency p99 14.4 ms 15.9 ms +1.52 ms

Measured against an in-process loopback HTTP server with a 10 ms upstream delay (eliminates network jitter so the delta isolates SDK overhead: HTTP capture, span emit, JSONL write+fsync, matcher, LLMSpan build). Real LLM calls land in the 100 ms – 2000 ms range, so this works out to under 1% wall-clock overhead in practice.

Reproduce with:

uv run python scripts/bench_record_overhead.py --calls 200 --runs 5

Installation

pip install agentic-lab           # minimal SDK
pip install 'agentic-lab[ui]'     # + Starlette UI server

The PyPI distribution is agentic-lab; the importable Python module is agentlab:

import agentlab as al

For local development, this repo is uv-managed:

git clone https://github.com/ambuj-krishna-agrawal/agentlab.git
cd agentlab
uv sync --all-extras --frozen

Use --frozen by default so your environment matches uv.lock and CI.

Documentation

  • Quickstart — five minutes from install to a replayable trace.
  • Provider coverage — every supported LLM provider + how to add custom ones.
  • Error reference — every AGL-… code with a remediation sentence (auto-generated from src/agentlab/errors.py).
  • Changelog — version history.
  • AGENTS.md — invariants and quality gates contributors must respect.
  • CONTRIBUTING.md — human-contributor process.

Configuration

  • Secrets live in .env (git-ignored). Copy .env.example and set the provider keys you use.
  • Non-secret defaults live in src/agentlab/_defaults.toml and can be overridden by AGENTLAB_* environment variables.
  • Full typed config lives in src/agentlab/config.py.

Quickstart

Five minutes from pip install to a trace you can replay without an API key. The full runnable script ships in the wheel at agentlab.examples.quickstart; the inline version:

import os
import openai
import agentlab as al

client = openai.OpenAI(
    api_key=os.environ["OPENROUTER_API_KEY"],
    base_url="https://openrouter.ai/api/v1",
)

# 1. Record.
with (
    al.record(agent_name="quickstart") as recording,
    al.agent(name="quickstart", version="0"),
    al.step(role=al.StepRole.EXECUTE),
):
    response = client.chat.completions.create(
        model="openai/gpt-4o-mini",
        messages=[{"role": "user", "content": "Reply with the single word 'ok'."}],
        max_tokens=16,
    )
print("model said:", response.choices[0].message.content)
print("trace at:  ", recording.directory)

# 2. Replay — no network, no key.
with al.replay(str(recording.directory)) as session:
    replay = client.chat.completions.create(
        model="openai/gpt-4o-mini",
        messages=[{"role": "user", "content": "Reply with the single word 'ok'."}],
        max_tokens=16,
    )
print("replay said:", replay.choices[0].message.content)
print("cache hits: ", session.cache_hits)
pip install 'agentic-lab[ui]' openai
export OPENROUTER_API_KEY=sk-or-...
python -m agentlab.examples.quickstart
agentlab serve --root ~/.agentlab/traces
# → http://127.0.0.1:7861/

The with al.agent(...) and al.step(...) envelopes give the auto-emitted LLMSpan a typed parent (the V4 schema forbids LLM under bare RUN). Production agents normally establish these once near their entrypoints and don't repeat them per-call — see agentlab.examples.workflows for that shape.

Larger example agents

Reference agents under agentlab.examples cover the Anthropic building-effective-agents shapes:

Folder Shape What it does
workflows/ Workflow (fixed code path) Decompose → Wikipedia search → cite → LLM-as-judge → revise.
autonomous/ Autonomous (model picks each step) LangGraph observe-plan-act loop that triages support tickets.
hybrid/ Workflow + autonomous sub-agent Incident-response pipeline with autonomous investigation step.

All three use OpenRouter via langchain-openai, real (or realistic) tools, and can write traces into a local example_traces/ directory that agentlab serve can browse.

Provider coverage

Inside an agentlab.record() block AgentLab patches httpx transport methods, so every SDK that routes through httpx (which is most modern Python LLM SDKs) lands its raw exchange in http.jsonl. That file is the source of truth for replay; the typed LLMSpan is a best-effort view layered on top.

The built-in matchers turn recognised exchanges into typed LLMSpans out of the box:

Provider Endpoint(s) Stream?
OpenAI chat completions api.openai.com/v1/chat/completions yes
OpenAI Responses api.openai.com/v1/responses yes
OpenAI Embeddings api.openai.com/v1/embeddings n/a
Azure OpenAI chat completions *.openai.azure.com/openai/deployments/<dep>/chat/completions yes
Anthropic Messages api.anthropic.com/v1/messages yes
AWS Bedrock — Invoke bedrock-runtime.<region>.amazonaws.com/model/<id>/invoke[-with-response-stream] partial1
AWS Bedrock — Converse bedrock-runtime.<region>.amazonaws.com/model/<id>/converse[-stream] partial1
Google Gemini generativelanguage.googleapis.com/.../models/<m>:[stream]generateContent yes
Vertex AI — Gemini <region>-aiplatform.googleapis.com/.../models/<m>:[stream]generateContent yes
Vertex AI — Anthropic (Claude) <region>-aiplatform.googleapis.com/.../models/<m>:[stream]rawPredict yes
OpenRouter openrouter.ai/api/v1/chat/completions yes
Together AI api.together.{xyz,ai}/v1/chat/completions yes
Groq api.groq.com/openai/v1/chat/completions yes
Mistral api.mistral.ai/v1/chat/completions yes
Fireworks api.fireworks.ai/inference/v1/chat/completions yes
DeepInfra api.deepinfra.com/v1/openai/chat/completions yes
Perplexity api.perplexity.ai/chat/completions yes

Adding a custom or self-hosted provider

OpenAI-compatible hosts (vLLM, Ollama, your private gateway) need one line:

import agentlab as al
from agentlab.llm.matchers.openai import HostPathMatcher

al.register_llm_provider(HostPathMatcher(
    name="my-vllm",
    host_suffix="llm.internal.example.com",
    path_prefix="/v1/chat/completions",
))

For wholly different body shapes, subclass agentlab.llm.LLMProviderMatcher.

Pricing

The SDK is token-only by defaultLLMSpan.cost.usd stays at 0.0 and the span is annotated with agentlab.llm.pricing.unknown=True. Provider list-prices change too often to bake into the SDK. Operators who want USD computed on every span install their own table:

from agentlab.llm.pricing import PriceRow, StaticPriceTable, set_price_table

set_price_table(StaticPriceTable(rows=(
    PriceRow("openai", "gpt-4o", 2.50, 10.00),
    PriceRow("anthropic", "claude-3-5-sonnet*", 3.00, 15.00),
)))

Strict mode for unrecognised exchanges

By default, exchanges that don't match any provider matcher log a warning (one per (trace, host)) and the raw exchange remains in http.jsonl. Power users can opt into stricter behaviour:

with al.record(strict_unknown_provider="raise"):  # or "emit_op"
    ...

"raise" surfaces the gap as UnknownLLMProviderError; "emit_op" records the call as a typed OpSpan so the trace tree is complete even without a matcher.

UI and examples

Generate traces with the bundled examples (they ship inside the wheel), then run the backend UI server against that local trace directory:

uv run python -m agentlab.examples.workflows.research_assistant --traces example_traces
uv run agentlab --root example_traces serve --port 7861

Optional frontend dev server with HMR:

cd frontend
npm install
npm run dev

The bundled runnable agents live in agentlab.examples and are available from the Agents page when the server starts successfully.

UI walkthrough

Dashboard

Dashboard

Traces list

Traces list

Trace detail

Trace detail

Agents

Agents

Settings

Settings

Development

Run the local quality gate:

bash scripts/check.sh

Equivalent commands:

uv run ruff check .
uv run ruff format --check .
uv run mypy
uv run pytest tests/unit tests/integration -n auto --dist=worksteal

Testing

Current test tiers:

  • tests/unit/: hermetic unit tests (no real network).
  • tests/integration/: in-process integration tests with mocked HTTP where needed.

For live-provider smoke runs, use the runnable examples in example/ through their CLIs or the UI Agents page.

Project layout

agentlab/
├── src/agentlab/
│   ├── __init__.py          # public API surface
│   ├── cli.py               # `agentlab` console entry point
│   ├── config.py            # typed settings
│   ├── recorder.py          # public `record()` context manager
│   ├── _defaults.toml       # bundled non-secret defaults
│   ├── _proto/              # generated protobuf bindings (private)
│   ├── bridges/             # export bridges (e.g. OTel GenAI)
│   ├── core/                # recording primitives
│   ├── examples/            # bundled runnable agent seeds (shipped in wheel)
│   ├── io/                  # trace IO + HTTP capture
│   ├── integrations/        # framework adapters
│   ├── llm/                 # provider-agnostic LLM client
│   ├── replay/              # deterministic replay engine
│   ├── storage/             # JSONL + protobuf stores
│   ├── ui/                  # Starlette UI server + DTO mapping
│   ├── pytest.py            # pytest plugin
│   └── promote.py           # replay-test scaffold generator
├── frontend/                # React SPA for the UI server
├── proto/agentlab/v1/trace.proto
├── scripts/                 # check, proto regen, UI screenshot helpers
├── tests/{unit,integration}/
└── uv.lock

License

Apache 2.0 — see LICENSE.

  1. Bedrock streaming uses AWS event-stream binary framing. Buffered responses populate every LLMSpan field; streamed responses record the request side and a validation_errors entry explaining why the response side is empty. The raw bytes are still preserved in http.jsonl. 2

Project details


Download files

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

Source Distribution

agentic_lab-0.3.0.tar.gz (810.3 kB view details)

Uploaded Source

Built Distribution

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

agentic_lab-0.3.0-py3-none-any.whl (911.3 kB view details)

Uploaded Python 3

File details

Details for the file agentic_lab-0.3.0.tar.gz.

File metadata

  • Download URL: agentic_lab-0.3.0.tar.gz
  • Upload date:
  • Size: 810.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentic_lab-0.3.0.tar.gz
Algorithm Hash digest
SHA256 ce8d467b50030cb8a886de25b19919b22f2fdf342bc63dd1e588fea78ca5c5ac
MD5 b79a9c6fda28b74f4b4d705ead659c42
BLAKE2b-256 d7171c1f15f688ea56fe58e9c1036744674220e624fb6e0e99b0148171adbc8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_lab-0.3.0.tar.gz:

Publisher: release.yml on ambuj-krishna-agrawal/agentlab

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

File details

Details for the file agentic_lab-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: agentic_lab-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 911.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agentic_lab-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3250089dd8fbc9dae5269c2b6ebdf1dcdbdc1d134fa677b6c9367248503125eb
MD5 5d32459b3b6a5d6f7f814b405613dda5
BLAKE2b-256 3a43221fab1ff2f0481bbe13de763a34c7d8343ef93ea0ba33c62feb424e36f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentic_lab-0.3.0-py3-none-any.whl:

Publisher: release.yml on ambuj-krishna-agrawal/agentlab

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page