mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-04 05:39:06 +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
|
||||
"""
|
||||
if not images or not vision_enabled:
|
||||
return message
|
||||
|
||||
constructed_messages = [
|
||||
{"type": "text", "text": message},
|
||||
]
|
||||
@@ -292,8 +289,9 @@ def construct_structured_message(
|
||||
ChatModelOptions.ModelType.GOOGLE,
|
||||
ChatModelOptions.ModelType.ANTHROPIC,
|
||||
]:
|
||||
for image in images:
|
||||
constructed_messages.append({"type": "image_url", "image_url": {"url": image}})
|
||||
if vision_enabled and images:
|
||||
for image in images:
|
||||
constructed_messages.append({"type": "image_url", "image_url": {"url": image}})
|
||||
|
||||
return constructed_messages
|
||||
|
||||
|
||||
Reference in New Issue
Block a user