Skip to content

Commit 9f93871

Browse files
committed
fix typo in tracing.md
1 parent 18b10f1 commit 9f93871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/tracing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def main():
5050

5151
with trace("Joke workflow"): # (1)!
5252
first_result = await Runner.run(agent, "Tell me a joke")
53-
second_result = await Runner.run(agent, f"Rate this joke: {first_output.final_output}")
53+
second_result = await Runner.run(agent, f"Rate this joke: {first_result.final_output}")
5454
print(f"Joke: {first_result.final_output}")
5555
print(f"Rating: {second_result.final_output}")
5656
```

0 commit comments

Comments
 (0)