mirror of
https://github.com/kharonsec/ollama-python
synced 2026-04-25 23:24:55 +02:00
12 lines
192 B
Python
12 lines
192 B
Python
from ollama import chat
|
|
|
|
messages = [
|
|
{
|
|
'role': 'user',
|
|
'content': 'Why is the sky blue?',
|
|
},
|
|
]
|
|
|
|
response = chat('gemma3', messages=messages)
|
|
print(response['message']['content'])
|