From 261998582a715e60027bac52618f233af79a6349 Mon Sep 17 00:00:00 2001 From: Matthew Ford Date: Wed, 12 Mar 2025 00:48:29 +0000 Subject: [PATCH] Update quickstart.md Add an example that works before the guard, so people don't think the task just failed. --- docs/quickstart.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/quickstart.md b/docs/quickstart.md index 19051f49..f8eca5ca 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -166,6 +166,9 @@ triage_agent = Agent( ) async def main(): + result = await Runner.run(triage_agent, "who was the first president of the united states?") + print(result.final_output) + result = await Runner.run(triage_agent, "what is life") print(result.final_output)