Skip to content

Commit d73c770

Browse files
Merge pull request openai#108 from dingkwang/main
Bug openai#107. fix typo in tracing.md
2 parents ca8a5be + 2acac3e commit d73c770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tracing.md

Lines changed: 1 addition & 1 deletion
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)