Files
ollama-python/examples/generate-stream.py

6 lines
147 B
Python

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