mirror of
https://github.com/kharonsec/ollama-python
synced 2026-05-10 00:52:32 +02:00
6 lines
113 B
Python
6 lines
113 B
Python
from ollama import generate
|
|
|
|
|
|
response = generate('mistral', 'Why is the sky blue?')
|
|
print(response['response'])
|