mirror of
https://github.com/ollama/ollama-python.git
synced 2026-09-02 17:59:53 +00: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'])
|