ollama-python/examples/generate-stream.py
Parth Sareen fe91357d4b
Some checks failed
test / test (push) Has been cancelled
test / lint (push) Has been cancelled
examples: update to use gemma3 (#543)
2025-07-22 16:27:16 -07:00

5 lines
144 B
Python

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