Hugging Face has reconstructed the core feature set of AUTOMATIC1111's stable-diffusion-webui as Workflow1111, a single 73-node graph built entirely on gr.Workflow.
Workflow1111 implements eleven distinct media pipelines within a unified canvas, replacing the tabbed interface of the original AUTOMATIC1111 UI with a node-based architecture. The graph comprises seventy-three nodes utilizing four operator kinds: Python functions (fn), model calls via InferenceClient, external Gradio Spaces, and Hub dataset rows. Key capabilities include text-to-image generation with hi-resolution fixes using FLUX.1-Kontext, image-to-video animation via Wan 2.2 I2V A14B, and VLM-based interrogation using Qwen2.5-VL. Unlike ComfyUI, which often requires custom nodes for LLM integration, this implementation treats large language models and diffusion models as standard operators on the same canvas, allowing parallel execution of tasks like prompt generation and image classification.
The architecture emphasizes local processing where possible to maintain functionality during network interruptions. Of the thirty-six operator nodes in the application, thirty-two are function nodes, and twenty-two of those execute entirely in-process using Pillow and NumPy without network calls. This includes ControlNet-style annotators like Canny and line art, which process images in approximately 0.5 seconds on CPU. Remote dependencies are isolated to specific model calls or Space invocations, such as the AuraSR ×4 upscaler and BRIA RMBG-2.0 for background removal. Users can run these pipelines by signing in with a Hugging Face account, ensuring model calls consume the user's own quota rather than a shared pool.
Every output node on the canvas automatically exposes a typed REST endpoint and an MCP tool, eliminating the need for manual route definitions. The system generates nine specific endpoints, including /image, /edited_image, and /png_info, allowing external agents like Claude Code or Cursor to invoke workflow steps directly. Developers can deploy the canvas to a Space or bind the workflow to local GPU functions using ZeroGPU, enabling the same graph to drive remote inference providers or local hardware seamlessly. This approach allows practitioners to duplicate the Space, rewire the eleven pipelines, and immediately deploy custom multi-modal applications without managing server infrastructure.
Why it matters
This demonstrates that complex, multi-modal AI applications can be assembled as browser-native graphs where every step is simultaneously a UI component, a REST API, and an MCP tool, significantly reducing the glue code required to productionize workflows.