Summary bar
The summary bar reports the shape of the run at a glance.- Steps. How many reasoning steps the model took, plus the final answer.
- Tool calls. How many times it called the retrieval SDK.
- Tokens. Input and output tokens for the whole query.
- Latency. Wall-clock time to produce the answer.
- Cost. Total cost, with a breakdown in Cost detail.
Cost detail
Cost detail breaks the run down by tokens and cost.- Where the tokens went. How the spend divides between the reasoning steps and the final synthesis, plus the total billed.
- New input by step. The fresh input tokens each step adds. Every step re-sends the whole conversation, so only the new tokens are fresh work. The carried remainder is re-read context that can be served from the prompt cache.
- Output tokens by step. The output tokens produced by each step and the answer.
- Caching savings. How much input was served from cache versus billed as fresh, with an effective cost estimate. Cached input bills far below fresh input, so a run that reuses more context costs less.
Spans and inspector
The trace lists each span with its duration, from the modelโs own reasoning steps to the individual tool calls it made. Select any span to update the inspector with the detail for that span.- A reasoning step shows its input and output tokens, its timing (split into decide time while the model reasons and execute time while the code runs), its cost, and the generated code the model wrote and ran.
- A tool call (for example,
query_db()) shows its arguments (the query it ran), its result (such as the number of rows returned), and its timing.