fix typo in tracing.md

This commit is contained in:
Dingkang Wang 2025-03-12 14:54:11 -07:00
parent ca8a5bea15
commit 2acac3e0db
1 changed files with 1 additions and 1 deletions

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}")
```