mirror of
https://github.com/ollama/ollama-python.git
synced 2026-01-13 21:57:16 +08:00
5 lines
113 B
Python
5 lines
113 B
Python
from ollama import generate
|
|
|
|
response = generate('llama3.2', 'Why is the sky blue?')
|
|
print(response['response'])
|