feat: update api to support image comparison

This commit is contained in:
clean99 2023-11-21 21:14:45 +08:00
parent 4290c70548
commit 02c3178b6b

View File

@ -96,6 +96,9 @@ async def stream_code_test(websocket: WebSocket):
async def process_chunk(content): async def process_chunk(content):
await websocket.send_json({"type": "chunk", "value": content}) await websocket.send_json({"type": "chunk", "value": content})
if params.get("resultImg") and params["resultImg"]:
prompt_messages = assemble_prompt(params["image"], params["resultImg"])
else:
prompt_messages = assemble_prompt(params["image"]) prompt_messages = assemble_prompt(params["image"])
# Image cache for updates so that we don't have to regenerate images # Image cache for updates so that we don't have to regenerate images