From 69abd9e1d1c3c477cc2aa9050fe8619fed6c0359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Mon, 31 Mar 2025 21:13:15 +0200 Subject: [PATCH] OLLAMA models working MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- examples/cai/simple_one_tool_test_streamed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/cai/simple_one_tool_test_streamed.py b/examples/cai/simple_one_tool_test_streamed.py index 08ea6a35..4a8475f8 100644 --- a/examples/cai/simple_one_tool_test_streamed.py +++ b/examples/cai/simple_one_tool_test_streamed.py @@ -44,7 +44,7 @@ async def main(): print("Agent: ", end="", flush=True) # Run the agent with a simple test message in streaming mode - result = Runner.run_streamed(agent, "Explain what you can do in a few sentences. Don't use any tools.") + result = Runner.run_streamed(agent, "Hello! Can you introduce yourself and explain what you can do?") # Process the streaming response async for event in result.stream_events():