Multi-Agent Correlation
Install
pip install briefcase-ai[correlation]Quick Example
from briefcase.correlation import CorrelationContext
with CorrelationContext(workflow_id="wf-123") as ctx: result_a = agent_a.run(task) result_b = agent_b.run(result_a)All decisions within the context share the same workflow_id, enabling end-to-end tracing.
Key Classes
CorrelationContext— context manager that propagates correlation IDs
Configuration
| Option | Default | Description |
|---|---|---|
propagation | "w3c" | Context propagation format |
auto_correlate | True | Automatically link nested decisions |