ollama-python/examples/chat/chat-stream.py
2025-09-24 15:10:00 -07:00

12 lines
225 B
Python

from ollama import chat
messages = [
{
'role': 'user',
'content': 'Why is the sky blue?',
},
]
for part in chat('gemma3', messages=messages, stream=True):
print(part['message']['content'], end='', flush=True)