mirror of
https://github.com/kharonsec/ollama-python
synced 2026-05-10 17:12:03 +02: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'])
|