Weave for Agents is in public preview. Features, APIs, and the Agents view UI may change before general availability.
weave.log_turn and weave.log_session. All spans are created and ended immediately without keeping any context managers open.
Data logged this way can be historical — no live session is needed. Set session_id to any stable string that uniquely identifies the conversation. Turns that share the same session_id are grouped as a single session in the Agents view.
If you are building your own agent loop, use the real-time instrumentation APIs described in Trace your agents instead.
Log a turn
weave.log_turn accepts a fully-formed turn, including all LLM and tool spans.
- Python
- TypeScript
log_turn returns a LogResult containing the trace IDs of the emitted spans.
An optional model parameter on log_turn sets the model on the turn’s own span, not on the child LLM spans. Each LLM span carries its own model independently. If a turn uses multiple models, set model on log_turn to whichever you consider the primary model for that turn.
Log a session
To bulk-import a complete, multi-turn session at once, useweave.log_session. The turns parameter accepts a list of Turn objects, each constructed the same way as the log_turn example above.
- Python
- TypeScript