fix typo in tracing.md

This commit is contained in:
Dingkang Wang 2025-03-12 14:54:11 -07:00
parent 18b10f1371
commit 9f938716d1

View file

@ -50,7 +50,7 @@ async def main():
with trace("Joke workflow"): # (1)!
first_result = await Runner.run(agent, "Tell me a joke")
second_result = await Runner.run(agent, f"Rate this joke: {first_output.final_output}")
second_result = await Runner.run(agent, f"Rate this joke: {first_result.final_output}")
print(f"Joke: {first_result.final_output}")
print(f"Rating: {second_result.final_output}")
```