mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 19:08:59 -05:00
[GH-ISSUE #21493] issue: [Bug] Vision images no longer forwarded to external OpenAI – v0.8.2 #19500
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 @LennartJKlein on GitHub (Feb 16, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/21493
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.8.2
Ollama Version (if applicable)
No response
Operating System
Linux-based (linux/amd64) container
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
When using an OpenAI vision-capable model and uploading an image in chat, Open WebUI should forward the image to the OpenAI
/completionsrequest as either:image_url.url(fully qualified fetchable URL), ordata:image/...;base64,...inline URLso the model receives image pixels and can answer questions about the image.
Actual Behavior
The image upload succeeds and is stored as a file (visible in the message metadata), but the outgoing
/completionspayload contains only an internal UUID in theimage_url.urlfield.Example from outgoing payload:
This UUID is not resolvable by OpenAI, so the model replies as if it cannot access/see the image.
Steps to Reproduce
WEBUI_URLis set (I tested both:https://api.openai.com/v1(or your custom OpenAI-compatible gateway)gpt-5.2) in the chat model selector./completions(or relevant Open WebUI backend endpoint that forwards it)image_url.url = "<UUID>"(not a full URL and not base64)Expected result at step 10: model describes the uploaded image.
Actual result at step 10: model states it cannot access/see image content.
Logs & Screenshots
This behavior of Open WebUI v0.8.2 is by design. So it is more of a degrading issue than a bug.
Additional Information
image_url.urlrather than being expanded into a usable URL or inlined as base64.@Classic298 commented on GitHub (Feb 16, 2026):
fixed in dev - confirmation wanted (also: the third duplicate)