Small fixes and basic example

This commit is contained in:
Dmytro Struk
2025-07-30 16:20:33 -07:00
Unverified
parent 278a2a5f80
commit 08b01483c3
4 changed files with 93 additions and 4 deletions
@@ -31,7 +31,7 @@ async def non_streaming_example() -> None:
query = "What's the weather like in Seattle?"
print(f"User: {query}")
result = await agent.run(query)
print(f"Result: {result}\n")
print(f"Agent: {result}\n")
async def streaming_example() -> None: