Python: ollama + azureai openapi samples fix (#1244)

* ollama + azureai openapi samples fix

* small fix
This commit is contained in:
Giles Odigwe
2025-10-07 09:14:34 -07:00
committed by GitHub
Unverified
parent d01d9afb92
commit 1d27b57672
2 changed files with 3 additions and 1 deletions
@@ -44,7 +44,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: