mirror of
https://github.com/ollama/ollama-python.git
synced 2026-02-22 02:24:37 +08:00
6 lines
114 B
Python
6 lines
114 B
Python
from ollama import generate
|
|
|
|
|
|
response = generate('llama3.1', 'Why is the sky blue?')
|
|
print(response['response'])
|