design-docs/images-in-update-history.md
Multiple images in update history are fully supported in the backend.
create_message_from_history_item() in prompts/__init__.py handles image processingimages array create multipart content (images + text)images arrays gracefully fallback to text-onlytest_prompts.py)test_prompts.py, test_prompts_additional.py)test_prompts.py, test_prompts_additional.py)test_prompts_additional.py)Frontend can send update history items with:
{
text: "Update instructions",
images: ["data:image/png;base64,img1", "data:image/png;base64,img2"]
}
Backend automatically creates proper multipart messages for AI models.