Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion site/src/content/docs/user-guide/quickstart/python.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,14 @@ Traces provide detailed insight into the agent's reasoning process. You can acce

:::note[Example result.metrics.get_summary() output]

<details>
<summary>Click to expand</summary>

```python
result = agent("What is the square root of 144?")
print(result.metrics.get_summary())
```
```python
```json
{
"accumulated_metrics": {
"latencyMs": 6253
Expand Down Expand Up @@ -342,6 +345,8 @@ print(result.metrics.get_summary())
]
}
```
</details>

:::

This observability data helps you debug agent behavior, optimize performance, and understand the agent's reasoning process. For detailed information, see [Observability](../observability-evaluation/observability.md), [Traces](../observability-evaluation/traces.md), and [Metrics](../observability-evaluation/metrics.md).
Expand Down
Loading