gen_ai.agent.name and gen_ai.conversation.id.
If you’re tracing individual functions as Ops with the @weave.op decorator, see Trace LLM applications instead.
Before you begin
To get started, install theweave package and initialize your project. This step registers your team and project with Weave so that the SDK routes spans to the correct location in the UI.
- Python
- TypeScript
[YOUR-TEAM] with your W&B team name and [YOUR-PROJECT] with your W&B project name.weave.init() before any start_conversation(), start_turn(), start_llm(), start_tool(), or start_subagent() call. All agent tracing functions no-op silently when tracing is disabled or the init call is absent, so you can leave instrumentation in production code and control it through configuration.The agent data model
Weave models agent behavior as a hierarchy of one-to-many relationships. Each agent can have many conversations, each conversation can have many turns, each turn can have many LLM calls, and each LLM call can trigger many tool calls.| Concept | Weave SDK class | OTel span type | Description | Reference page |
|---|---|---|---|---|
| Agent | (no class) | (no span, grouped by the agent_name attribute) | An agentic application in the Agents tab that contains one or more conversations. | |
| Conversation | Conversation | (no span, turns are grouped by the conversation_id attribute) | A conversation or run that contains one or more turns. | Python TypeScript |
| Turn | Turn | invoke_agent | One user message and the agent’s complete response. | Python TypeScript |
| LLM call | LLM | chat | One call to a language model API. | Python TypeScript |
| Tool call | Tool | execute_tool | One tool call triggered by an LLM response. | Python TypeScript |
| Sub-agent call | SubAgent | invoke_agent | A nested agent invocation, typically when one agent delegates to another. | Python TypeScript |
conversation_id attribute rather than a parent span, so each turn starts its own OTel trace. This design supports distributed tracing and parallel execution. The client sends spans directly to the OTel collector without any server-side aggregation.
Agent tracing APIs
The following sections describe each top-level tracing function and the arguments it accepts. Use them to instrument the conversation, turn, LLM call, and tool call layers of the data model described in the previous section. Weave exposes the following top-level functions. Each function returns an object that works as a context manager (usingwith in Python, or try/finally in TypeScript) or that you can close manually by calling .end().
Start a conversation
start_conversation() (Python) or startConversation() (TypeScript) stamps a conversation_id attribute on every child span so that turns are grouped in the Agents tab. If you pass a conversation_id / conversationId, it must be stable across the lifetime of the conversation. Reuse the same ID to add new turns to an existing conversation. When you omit it, the SDK generates a UUID automatically.
The active conversation is stored in context (a Python ContextVar or Node.js AsyncLocalStorage), so any code running in the same async context can retrieve it with weave.get_current_conversation() / weave.getCurrentConversation() without passing the conversation object explicitly.
- Python
- TypeScript
Start a turn
start_turn() (Python) and startTurn() (TypeScript) create a new invoke_agent span that becomes the root of a new OTel trace. Weave uses this span to represent one complete user-agent exchange in the timeline view.
You can call it two ways:
- As a top-level function (
weave.start_turn(...)/weave.startTurn(...)), shown in the examples below. It resolves the active conversation from context and inherits its conversation ID. If no conversation is active, the turn is created without aconversation_idand isn’t grouped with other turns. - As an instance method on a conversation you hold a reference to (
conversation.start_turn(...)/conversation.startTurn(...)). Useful when you have an explicit conversation object in scope, such as inside a context-manager block. The “Context manager or try-finally pattern” example below uses this form. See the data-model table above for direct links to theConversation,Turn,LLM,Tool, andSubAgentreference pages in both SDKs.
- Python
- TypeScript
Start an LLM call
start_llm() / startLLM() creates a chat span nested under the current turn. Weave uses this span to display token usage, model name, input and output messages, and reasoning in the Agents view.
- Python
- TypeScript
llm object before it closes:
- Python
- TypeScript
provider_name / providerName explicitly. Weave doesn’t infer it from the model string.
Start a tool call
start_tool() / startTool() creates an execute_tool span. The span becomes a child of whatever OTel span is active in context (typically the chat span of the LLM call that produced the tool call).
- Python
- TypeScript
- Python
- TypeScript
Usage patterns for agent tracing
The following sections describe how to combine these functions depending on how your agent code is structured. The following examples use two types from the Weave SDK:Message(Python · TypeScript) represents a single entry in a conversation: a user input, an assistant response, a system prompt, or a tool result. Assign a list of messages tollm.input_messages/llm.inputMessagesto record what the model received, and tollm.output_messages/llm.outputMessagesto record what it produced.Usage(Python · TypeScript) captures token counts from the LLM response and is assigned tollm.usage.
Context manager or try-finally pattern
For most agents, use a context manager pattern in Python or a try-finally pattern in TypeScript. The span closes and sends at the end of the block, even if an exception occurs. Weave stores the active conversation, turn, and LLM call in context, so any function called within a block can callstart_llm() / startLLM() or start_tool() / startTool() without holding an explicit reference to the parent. This works across module boundaries as long as the code runs in the same async context. To retrieve the active objects from anywhere in the call stack, use weave.get_current_conversation() / weave.getCurrentConversation(), weave.get_current_turn() / weave.getCurrentTurn(), and weave.get_current_llm() / weave.getCurrentLLM().
- Python
- TypeScript
Manual start and end pattern
Use.end() explicitly when you can’t use with blocks or try/finally. For example, when you open and close spans in different function calls, or when you manage async lifecycle outside a coroutine. You’re responsible for calling .end() on every object you create, so that spans close and flush to the collector.
- Python
- TypeScript
Semantic conventions
The Weave SDK emits OTel spans that conform to the GenAI semantic conventions and GenAI agent span conventions. Weave accepts any OTel span, stores all attributes, and makes them queryable. You can add arbitrary attributes to spans with the standard OTel span API alongside Weave’s tracing objects.How data appears in the Weave UI
After you instrument your agent with the preceding patterns and run it, your traces appear in the Agents tab of your Weave project athttps://wandb.ai/[YOUR-TEAM]/[YOUR-PROJECT]/weave/agents.
- The Conversations tab shows all conversations with a minimap of turn activity.
- The Conversation detail view opens when you click a conversation and shows all turns, its LLM calls, tool executions, token counts, and any attached feedback.