ollama-python/examples/create.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

11 lines
203 B
Python
Executable File

from ollama import Client
client = Client()
response = client.create(
model='my-assistant',
from_='gemma3',
system='You are mario from Super Mario Bros.',
stream=False,
)
print(response.status)