ollama-python/examples/chat.py
Parth Sareen fe91357d4b
Some checks failed
test / test (push) Has been cancelled
test / lint (push) Has been cancelled
examples: update to use gemma3 (#543)
2025-07-22 16:27:16 -07:00

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'])