mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-18 18:47:11 +00:00
Update handling of images when included in the chat history with assistant message
Some checks failed
dockerize / Publish Khoj Docker Images (push) Waiting to run
build and deploy github pages for documentation / deploy (push) Waiting to run
pypi / Publish Python Package to PyPI (push) Waiting to run
desktop / 🖥️ Build, Release Desktop App (push) Has been cancelled
pre-commit / Setup Application and Lint (push) Has been cancelled
test / Run Tests (push) Has been cancelled
Some checks failed
dockerize / Publish Khoj Docker Images (push) Waiting to run
build and deploy github pages for documentation / deploy (push) Waiting to run
pypi / Publish Python Package to PyPI (push) Waiting to run
desktop / 🖥️ Build, Release Desktop App (push) Has been cancelled
pre-commit / Setup Application and Lint (push) Has been cancelled
test / Run Tests (push) Has been cancelled
This commit is contained in:
parent
b660c494bc
commit
eb36492ba5
1 changed files with 13 additions and 14 deletions
|
@ -433,8 +433,7 @@ def generate_chatml_messages_with_context(
|
||||||
reconstructed_context_message = ChatMessage(content=message_context, role="user")
|
reconstructed_context_message = ChatMessage(content=message_context, role="user")
|
||||||
chatml_messages.insert(0, reconstructed_context_message)
|
chatml_messages.insert(0, reconstructed_context_message)
|
||||||
|
|
||||||
if chat.get("images"):
|
if chat.get("images") and role == "assistant":
|
||||||
if role == "assistant":
|
|
||||||
# Issue: the assistant role cannot accept an image as a message content, so send it in a separate user message.
|
# Issue: the assistant role cannot accept an image as a message content, so send it in a separate user message.
|
||||||
file_attachment_message = construct_structured_message(
|
file_attachment_message = construct_structured_message(
|
||||||
message=prompts.generated_image_attachment.format(),
|
message=prompts.generated_image_attachment.format(),
|
||||||
|
@ -443,9 +442,9 @@ def generate_chatml_messages_with_context(
|
||||||
vision_enabled=vision_enabled,
|
vision_enabled=vision_enabled,
|
||||||
)
|
)
|
||||||
chatml_messages.append(ChatMessage(content=file_attachment_message, role="user"))
|
chatml_messages.append(ChatMessage(content=file_attachment_message, role="user"))
|
||||||
else:
|
|
||||||
message_content = construct_structured_message(
|
message_content = construct_structured_message(
|
||||||
chat_message, chat.get("images"), model_type, vision_enabled
|
chat_message, chat.get("images") if role == "user" else [], model_type, vision_enabled
|
||||||
)
|
)
|
||||||
|
|
||||||
reconstructed_message = ChatMessage(content=message_content, role=role)
|
reconstructed_message = ChatMessage(content=message_content, role=role)
|
||||||
|
|
Loading…
Reference in a new issue