feat: update api to support image comparison
This commit is contained in:
parent
4290c70548
commit
02c3178b6b
@ -96,6 +96,9 @@ async def stream_code_test(websocket: WebSocket):
|
||||
async def process_chunk(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"])
|
||||
|
||||
# Image cache for updates so that we don't have to regenerate images
|
||||
|
||||
Loading…
Reference in New Issue
Block a user