Nightly Build / build (push) Successful in 7m1s
The generic per-user #plugins page is gone: a plugin with per-user settings hosts them in its own web_pages() sidebar page instead (Telegram's pairing page is new; Honcho's opt-in page already existed). The admin catalog moves from #plugin-catalog to #plugins (old hash redirected), and user_config_schema is removed from the Plugin trait, the API DTOs and both plugins — the my-config endpoint, the plugin_user_configs store and the update_user_config hook stay, now driven by each plugin's own page fragment.
2.4 KiB
2.4 KiB
ComfyUI
- Plugin id:
comfyui - Category: Image generation, local
- Runs: talks to a separately-running ComfyUI server over HTTP (default
http://localhost:8188)
What it does
Turns a locally running ComfyUI installation into one or more image-generation models the assistant can call. Every JSON workflow file dropped into a watched folder becomes its own selectable model — so a user can have separate "photo-realistic", "anime", "upscale" etc. workflows, each showing up independently.
The plugin polls the ComfyUI server every 5 seconds. If it's offline, every model built from it disappears until it comes back; if a workflow file is added, edited, or removed, the model list updates live — no restart needed.
Requirements
- ComfyUI installed and running somewhere reachable from this machine (its own GPU-heavy install, not something this app manages).
- At least one workflow exported from ComfyUI as a JSON API file, containing a
CLIPTextEncodenode (for text-to-image) and/or an image-loading node (for image-to-image). Advanced workflows can add a_personal_agentmetadata block inside the JSON to control exactly which node/field receives the prompt, negative prompt, width/height/steps, and input image — without that block the plugin auto-detects the firstCLIPTextEncodenode.
Enabling & configuring (admin)
- Plugins page → ComfyUI → enable, then Configure.
- Fields:
base_url(defaulthttp://localhost:8188) — where ComfyUI's API is listening.workflows_dir(defaultdata/comfyui/workflows) — folder to watch for.jsonworkflow files. Created automatically if missing.default_negative— an optional negative prompt applied to every workflow that has a negative-prompt node.
- Put workflow JSON files in the workflows folder. Each becomes a model named after the file (or the
namegiven in its_personal_agentblock) in the Image generation section of the Models hub — no separate "add provider" step, since this plugin registers its models directly.
Notes
- A single generation can take up to 5 minutes before the plugin times out and reports an error.
- Image-to-image is supported when the workflow declares an
input_image_nodein_personal_agent. - If ComfyUI is unreachable, tell the user to start their ComfyUI server — there is nothing to fix in this app's configuration in that case.