mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-07 13:23:15 +00:00
Only add images when they're present and vision enabled
This commit is contained in:
@@ -277,9 +277,6 @@ def construct_structured_message(
|
|||||||
"""
|
"""
|
||||||
Format messages into appropriate multimedia format for supported chat model types
|
Format messages into appropriate multimedia format for supported chat model types
|
||||||
"""
|
"""
|
||||||
if not images or not vision_enabled:
|
|
||||||
return message
|
|
||||||
|
|
||||||
constructed_messages = [
|
constructed_messages = [
|
||||||
{"type": "text", "text": message},
|
{"type": "text", "text": message},
|
||||||
]
|
]
|
||||||
@@ -292,8 +289,9 @@ def construct_structured_message(
|
|||||||
ChatModelOptions.ModelType.GOOGLE,
|
ChatModelOptions.ModelType.GOOGLE,
|
||||||
ChatModelOptions.ModelType.ANTHROPIC,
|
ChatModelOptions.ModelType.ANTHROPIC,
|
||||||
]:
|
]:
|
||||||
for image in images:
|
if vision_enabled and images:
|
||||||
constructed_messages.append({"type": "image_url", "image_url": {"url": image}})
|
for image in images:
|
||||||
|
constructed_messages.append({"type": "image_url", "image_url": {"url": image}})
|
||||||
|
|
||||||
return constructed_messages
|
return constructed_messages
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user