Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2619985

Browse files
authoredMar 12, 2025
Update quickstart.md
Add an example that works before the guard, so people don't think the task just failed.
1 parent b6c9572 commit 2619985

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎docs/quickstart.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,9 @@ triage_agent = Agent(
166166
)
167167

168168
async def main():
169+
result = await Runner.run(triage_agent, "who was the first president of the united states?")
170+
print(result.final_output)
171+
169172
result = await Runner.run(triage_agent, "what is life")
170173
print(result.final_output)
171174

0 commit comments

Comments
 (0)
Please sign in to comment.