Skip to content

Commit ebdeda0

Browse files
Fix black formatting in agent_tracking example
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 88e33c5 commit ebdeda0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

examples/agent_tracking.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ def multi_agent_routing_example():
8585
print(f" Router: {intent['response']}")
8686

8787
# Specialist agent handles the request
88-
with agent_context(agent_id="refund_agent_v3", agent_name="Refund Agent", agent_version="3.1"):
88+
with agent_context(
89+
agent_id="refund_agent_v3", agent_name="Refund Agent", agent_version="3.1"
90+
):
8991
response = simulate_llm_call(tracer, "gpt-4o", "Process refund for order #12345")
9092
print(f" Refund Agent: {response['response']}")
9193

@@ -134,4 +136,5 @@ def agent_with_workflow_example():
134136
except Exception as e:
135137
print(f"Error: {e}")
136138
import traceback
139+
137140
traceback.print_exc()

0 commit comments

Comments
 (0)