Update quickstart.md

Add an example that works before the guard, so people don't think the task just failed.
This commit is contained in:
Matthew Ford 2025-03-12 00:48:29 +00:00 committed by GitHub
parent b6c9572265
commit 261998582a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)