mirror of
https://github.com/ollama/ollama-python.git
synced 2026-01-14 06:07:17 +08:00
5 lines
144 B
Python
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)
|