Hono-based backend server that proxies requests to ComfyUI instances and manages job status.
Execute a workflow on a ComfyUI server.
Request Body:
{ "serverIp": "192.168.1.100", "workflow": { /* ComfyUI workflow JSON */ }, "clientId": "optional-client-id" }
Response:
{ "prompt_id": "uuid", "number": 123, "client_id": "client-id", "server_ip": "192.168.1.100" }
Get the status of a specific job.
Response:
{ "prompt_id": "uuid", "status": "completed", "images": ["filename1.png", "filename2.png"], "created_at": "2023-...", "completed_at": "2023-..." }
Get execution history.
Proxy images from ComfyUI server.
Check if a ComfyUI server is online and get queue status.