Files
ollama-python/examples/generate-stream/main.py
2024-01-18 11:20:36 -08:00

6 lines
146 B
Python

from ollama import generate
for part in generate('mistral', 'Why is the sky blue?', stream=True):
print(part['response'], end='', flush=True)