mirror of
https://github.com/ollama/ollama-python.git
synced 2026-07-21 09:05:23 -04:00
Ollama.chat(...) does not support images #292
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @fbricon on GitHub (Sep 2, 2025).
The /chat endpoint supports images, as per the spec, yet the client's
chatmethod doesn't:https://github.com/ollama/ollama-python/blob/da79e987f0ac0a4986bf396f043b36ef840370bc/ollama/_client.py#L297-L357
Only the
generatemethod supports images:https://github.com/ollama/ollama-python/blob/da79e987f0ac0a4986bf396f043b36ef840370bc/ollama/_client.py#L220-L267
@ParthSareen commented on GitHub (Sep 2, 2025):
In chat, the image is under the messages field: https://github.com/ollama/ollama-python/blob/main/examples/multimodal-chat.py