mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 20:07:49 +01:00
fix url value when response contains url tag
When the response contains b64 json, the "url" tag still exists but comes as null, the logic is to resolve this point where it contains the url tag, but empty, thus directing to b64_json
This commit is contained in:
@@ -517,9 +517,9 @@ async def image_generations(
|
|||||||
images = []
|
images = []
|
||||||
|
|
||||||
for image in res["data"]:
|
for image in res["data"]:
|
||||||
if "url" in image:
|
if image_url := image.get("url",None):
|
||||||
image_data, content_type = load_url_image_data(
|
image_data, content_type = load_url_image_data(
|
||||||
image["url"], headers
|
image_url, headers
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
image_data, content_type = load_b64_image_data(image["b64_json"])
|
image_data, content_type = load_b64_image_data(image["b64_json"])
|
||||||
|
|||||||
Reference in New Issue
Block a user