For frameworks that have already completed the LLM call and just need to record it, useDocumentation Index
Fetch the complete documentation index at: https://wb-21fd5541-weave-agents.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
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.
weave.log_turn
weave.log_turn accepts a fully-formed turn, including all LLM and tool spans.
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.
weave.log_session
To bulk-import a complete, multi-turn session at once, use weave.log_session. The turns parameter accepts a list of Turn objects, each constructed the same way as the log_turn example above.