Workflow Test Bench (WTB) - SDK for workflow testing, debugging, and orchestration
Project description
WTB: Workflow Test Bench for Agentic Workflows
Built as the production release of Agent Git.
Overview • Architecture • Installation • Quick Start • Core Operations
WTB (Workflow Test Bench) is a production-grade testing, debugging, and benchmarking framework for agentic workflows. It ensures transactional integrity, reproducibility, and observability for complex AI agent systems by combining LangGraph orchestration, Ray distributed computing, content-addressable storage, and UV environment isolation.
The Problem: Modern agentic systems (RAG, autonomous agents) are not just "read-only" chat interfaces. They persist state, modify data, and evolve. Testing them requires more than simple input/output matching -- it requires a rig that understands state, side effects, and concurrency.
Overview
- Checkpoint & Rollback: Create restore points at every node boundary and travel back in execution history
- Forking (A/B Testing): Create independent execution branches from any checkpoint for variant comparison
- Batch Testing: Run multiple test cases and variant combinations in parallel via Ray
- File Version Control: Track all generated files with content-addressable storage (SHA-256 hashing)
- Environment Isolation: Per-node virtual environments via UV for dependency safety
Architecture
┌──────────────────────────┐
│ WTBTestBench │
│ (SDK Entry Point) │
└─────┬──────────┬─────────┘
│ │
single run │ │ batch test
▼ ▼
┌─────────────────┐ ┌──────────────────────┐
│ ExecutionCtrl │ │ RayBatchTestRunner │
│ (run, pause, │ │ │
│ rollback, │ │ Actor 0 │ Actor 1 │
│ fork) │ │ Actor 2 │ Actor N │
└───────┬─────────┘ └──────────┬───────────┘
│ │
┌────────────┴────────────────────────┘
▼
┌──────────────────────────────────────────────────────────┐
│ Infrastructure │
│ │
│ LangGraph CAS UV │
│ Checkpointer (SHA-256 Venv Manager │
│ ┌──────────┐ File Hashing) ┌──────────┐ │
│ │ Memory │ ┌──────────┐ │ per-node │ │
│ │ SQLite │ │ BlobId │ │ per-var │ │
│ │ Postgres │ │ CommitId │ │ isolated │ │
│ └──────────┘ └──────────┘ └──────────┘ │
│ │
│ SQLAlchemy Unit of Work (ACID transactions) │
└──────────────────────────────────────────────────────────┘
Timeline
[Jan 2026]: v0.2.0 -- Ray batch execution, LangGraph checkpoint integration, content-addressable file tracking, workspace isolation, and batch rollback/fork coordination.
Installation
Using uv (Recommended)
# Install core package
uv pip install wtb
# Install with Ray support for distributed batch testing
uv pip install "wtb[ray]"
# Install with all features (Ray, LangGraph SQLite/Postgres, API, Observability)
uv pip install "wtb[all]"
Using pip
pip install wtb
# With Ray support
pip install "wtb[ray]"
From Source
git clone https://github.com/KataDavidXD/WTB-AgenticWorkflowTestBench.git
cd WTB-AgenticWorkflowTestBench
# Install with uv
uv pip install -e ".[all]"
# Or with pip
pip install -e ".[all]"
Quick Start
All examples import only from
wtb.sdk. The Ray batch runner and LangGraph adapter are configured internally by the SDK.
Runnable Mode Demo
The quickest way to verify the main execution modes is the runnable demo in
examples/modes_quick_demo.py. Each mode proves the same control-flow contract:
real LLM call -> variant -> _output_files -> outputs/ -> checkpoint_id -> file_commit_id -> rollback -> resume -> fork/resume.
The demo requires a real OpenAI-compatible LLM provider. Configure either
environment variables or a local .env file:
LLM_API_KEY=...
LLM_BASE_URL=https://your-openai-compatible-endpoint/v1
LLM_MODEL=your-model-name
OPENAI_API_KEY, OPENAI_BASE_URL, and OPENAI_MODEL are also accepted. The
demo fails fast when no real LLM is configured; it does not fall back to mocks.
# Single workflow execution with a real LLM call, real output file, and registered node variant
python -m examples.modes_quick_demo --mode single
# Local batch mode with the same real LLM graph and CAS-tracked file restore
python -m examples.modes_quick_demo --mode batch
# Ray batch mode with the same real LLM graph and CAS-tracked file restore
python -m examples.modes_quick_demo --mode ray
# Ray batch mode plus Docker uv_venv_manager gRPC venv provisioning
python -m examples.modes_quick_demo --mode venv --grpc-url localhost:50051
# Run single + batch + Ray; add --grpc-url to include venv mode
python -m examples.modes_quick_demo --mode all --grpc-url localhost:50051
For the venv mode, start uv_venv_manager first:
cd C:\Users\asus\Documents\uv_venv_manager
docker compose up -d
Mode Recipes
These snippets use the demo graph so they stay short and executable.
Run them from the repository root. If you save a snippet outside the repo,
set PYTHONPATH to the repository root first.
Single Mode: real LLM file output, variant, rollback, resume, fork
import tempfile
from examples.modes_quick_demo import run_single
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as data_dir:
result = run_single(data_dir)
print(result["execution_id"])
Batch Mode: local batch file output with rollback/resume/fork
import tempfile
from examples.modes_quick_demo import run_batch
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as data_dir:
result = run_batch(data_dir)
print(result["fork_execution_id"])
Ray Batch Mode: distributed file output with rollback/resume/fork
import tempfile
import ray
from examples.modes_quick_demo import run_ray
try:
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as data_dir:
result = run_ray(data_dir)
print(result["execution_id"])
finally:
ray.shutdown()
Venv Mode: Ray batch plus Docker uv_venv_manager
import tempfile
import ray
from examples.modes_quick_demo import run_ray
try:
with tempfile.TemporaryDirectory(ignore_cleanup_errors=True) as data_dir:
result = run_ray(data_dir, grpc_url="localhost:50051")
print(result["actor_id"])
finally:
ray.shutdown()
E2E Validation with Docker uv_venv_manager
When uv_venv_manager is running via Docker compose, use the strict E2E checker:
.\scripts\verify_wtb_uv_e2e.ps1 -UvVenvManagerPath C:\Users\asus\Documents\uv_venv_manager
The script builds/starts compose, waits for REST and gRPC, runs the strict Ray
pytest, then runs install_checker.py --grpc-url localhost:50051.
1. Batch Testing with Ray (Recommended)
bench.run_batch_test() internally delegates to RayBatchTestRunner, which distributes variant combinations across a Ray ActorPool. Configure Ray through ExecutionConfig on your WorkflowProject.
from wtb.sdk import (
WTBTestBench,
WorkflowProject,
ExecutionConfig,
RayConfig,
FileTrackingConfig,
EnvironmentConfig,
EnvSpec,
)
# 1. Create bench (LangGraph checkpointer + SQLite configured internally)
bench = WTBTestBench.create(mode="development", data_dir="data")
# 2. Register project with Ray configuration
project = WorkflowProject(
name="rag_pipeline",
graph_factory=create_rag_graph, # your LangGraph factory function
execution=ExecutionConfig(
batch_executor="ray",
ray_config=RayConfig(address="auto", max_retries=3),
checkpoint_strategy="per_node",
checkpoint_storage="sqlite",
),
file_tracking=FileTrackingConfig(enabled=True, tracked_paths=["workspace/"]),
environment=EnvironmentConfig(
granularity="node",
default_env=EnvSpec(python_version="3.12", dependencies=["openai>=1.0.0"]),
),
)
bench.register_project(project)
# 3. Run batch test (Ray actors execute variants in parallel)
batch = bench.run_batch_test(
project="rag_pipeline",
variant_matrix=[
{"retriever": "bm25", "generator": "gpt4"},
{"retriever": "dense", "generator": "gpt4"},
{"retriever": "hybrid", "generator": "gpt4o-mini"},
],
test_cases=[
{"query": "What is the revenue?", "result": ""},
{"query": "List the competitors", "result": ""},
],
)
# 4. Inspect results
print(f"Batch status: {batch.status}")
for r in batch.results:
print(f" {r.combination_name}: success={r.success}, score={r.overall_score}")
# 5. Rollback or fork any result
bench.rollback_batch_result(batch.results[0])
fork = bench.fork_batch_result(batch.results[0], new_state={"temperature": 0.5})
2. Single Execution with LangGraph Checkpointing
WTBTestBench.create(mode="development") automatically configures a LangGraphStateAdapter with SQLite persistence. You never need to import the adapter directly.
from langgraph.graph import StateGraph, END
from wtb.sdk import WTBTestBench, WorkflowProject
# 1. Define your LangGraph workflow
def create_graph():
from typing import TypedDict
class State(TypedDict):
query: str
result: str
def process_node(state: State) -> dict:
return {"result": f"Processed: {state['query']}"}
graph = StateGraph(State)
graph.add_node("process", process_node)
graph.set_entry_point("process")
graph.add_edge("process", END)
return graph
# 2. Create bench and register project
bench = WTBTestBench.create(mode="development", data_dir="data")
project = WorkflowProject(name="my_workflow", graph_factory=create_graph)
bench.register_project(project)
# 3. Run workflow (LangGraph checkpoints at each super-step automatically)
execution = bench.run(
project="my_workflow",
initial_state={"query": "Hello, WTB!", "result": ""},
)
print(f"Status: {execution.status}")
# 4. Inspect checkpoints
checkpoints = bench.get_checkpoints(execution.id)
for cp in checkpoints:
print(f" Step {cp.step}: next={cp.next_nodes}")
# 5. Rollback
if checkpoints:
result = bench.rollback(execution.id, checkpoint_id=str(checkpoints[0].id))
print(f"Rollback success: {result.success}")
# 6. Fork for A/B comparison
if checkpoints:
fork = bench.fork(execution.id, checkpoint_id=str(checkpoints[0].id),
new_initial_state={"query": "Alternative input", "result": ""})
print(f"Fork ID: {fork.fork_execution_id}")
Core Operations
Checkpointing
execution = bench.run(project="my_workflow", initial_state={...})
checkpoints = bench.get_checkpoints(execution.id)
for cp in checkpoints:
print(f"Step {cp.step}: next={cp.next_nodes}, keys={list(cp.state_values.keys())}")
Rollback
result = bench.rollback(execution_id=execution.id, checkpoint_id=str(cp.id))
# Rollback to after a specific node
result = bench.rollback_to_node(execution_id=execution.id, node_id="retriever")
Forking (A/B Testing)
fork_a = bench.fork(execution.id, checkpoint_id=str(cp.id), new_initial_state={"model": "gpt-4o"})
fork_b = bench.fork(execution.id, checkpoint_id=str(cp.id), new_initial_state={"model": "gpt-4o-mini"})
exec_a = bench.resume(fork_a.fork_execution_id)
exec_b = bench.resume(fork_b.fork_execution_id)
Batch Testing
batch = bench.run_batch_test(
project="my_workflow",
variant_matrix=[
{"retriever": "bm25", "generator": "gpt4"},
{"retriever": "dense", "generator": "gpt4"},
],
test_cases=[{"query": "What is the revenue?"}],
)
for r in batch.results:
print(f" {r.combination_name}: score={r.overall_score}")
bench.rollback_batch_result(batch.results[0])
Environment Configuration
# Required (if your workflows use OpenAI)
export OPENAI_API_KEY="sk-..."
# Optional: Ray cluster
export RAY_ADDRESS="auto"
# Optional: Database
export WTB_DB_URL="sqlite:///data/wtb.db"
export WTB_CHECKPOINT_DB="data/wtb_checkpoints.db"
Contributing
We welcome contributions! WTB is open source and actively seeking:
- Bug reports and feature requests
- New state adapter implementations
- Documentation improvements
- Performance optimizations
Partner: HKU CAMO Lab
License
Apache License 2.0. See LICENSE for details.
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 wtb-0.2.4.tar.gz.
File metadata
- Download URL: wtb-0.2.4.tar.gz
- Upload date:
- Size: 378.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18f71b7ba6c49fc74addcf45ff8f91cbe2a58d686dc1ae2ecc5a89b563e0fdf9
|
|
| MD5 |
676faa4039472a167eb8adca6f3739cb
|
|
| BLAKE2b-256 |
94b0f6dd2a1b2852cd4ab9e3339cca6706232e7be167b482b37c8a94217d1a44
|
File details
Details for the file wtb-0.2.4-py3-none-any.whl.
File metadata
- Download URL: wtb-0.2.4-py3-none-any.whl
- Upload date:
- Size: 453.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d506612a74da2a5b3b43252b1573280c6c972ca993b724f3089a1164a1bb5365
|
|
| MD5 |
a1581db1619359a268423ce037692838
|
|
| BLAKE2b-256 |
5cf99756c29db505910cb7d8ff7589f36c6ba7c1d44874244260a225f7c7b8b0
|