ollama-python/examples/create.py
Parth Sareen 967fd657f1
client: improve error messaging on connection failure (#398)
*iImprove error messaging on connection failure
2025-01-16 13:55:17 -08:00

11 lines
205 B
Python
Executable File

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