Install
Use
What gets captured
- Each turn of the agent conversation
- Tool invocations and their results
- LLM calls behind each agent’s reasoning
- Group chat coordination spans
Caveats
- AutoGen’s conversation model is turn-based, not tree-based. DecimalAI flattens turns into a sequential trace; if you want a tree view, use the explicit
@decimalai.tracedecorator on your top-level orchestrator function. - Manifest detection captures tool names only.
What’s next
Tracing guide
Manual
@trace decorator if you want tree-shaped traces.Multi-agent guide
Modeling group chats and orchestrator patterns.