mirror of
https://github.com/ollama/ollama-python.git
synced 2026-06-25 07:45:34 -05:00
5 lines
111 B
Python
5 lines
111 B
Python
from ollama import generate
|
|
|
|
response = generate('gemma3', 'Why is the sky blue?')
|
|
print(response['response'])
|