Files
ollama-python/examples/simple-chat-stream/main.py
Michael Yang e8a66b8de1 examples
2023-12-21 17:00:31 -08:00

16 lines
257 B
Python

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