Skip to content

Commit 912a625

Browse files
Merge pull request #108 from dingkwang/main
Bug #107. fix typo in tracing.md
2 parents 18b10f1 + 9f93871 commit 912a625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)