Someone Rebuilt the World's Most Popular AI Image Tool Inside a Single Browser Canvas
Hugging Face's Workflow1111 squeezes eleven image and video pipelines into one draggable graph, and you can run the whole thing without owning a GPU.

Key points
- Workflow1111 is a single visual canvas containing 73 connected nodes that recreate most of the feature set of AUTOMATIC1111, the most widely used open-source AI image generator.
- The project runs on Hugging Face's gr.Workflow, a tool that lets developers wire AI models together like a flowchart, without writing routing code.
- Twenty-two of the 73 nodes run entirely on your own computer as plain Python functions, so roughly two-thirds of the app keeps working if your internet drops.
- Every output in the app automatically becomes a web API endpoint, meaning other software can call it with no extra code.
- Users sign in with a free Hugging Face account, and all model calls run against that account's own usage quota.
If you have spent any time generating AI images, you have probably heard of AUTOMATIC1111. It is the free, open-source tool that turned text-to-image generation into a hobbyist sport, with tabs for every conceivable tweak: upscaling, inpainting (filling in or replacing parts of an image), prompt matrices (a grid of images from one base prompt with different endings), and more. The tool is powerful. It is also famously fiddly to install.
Now a team at Hugging Face has rebuilt nearly all of it inside a single visual canvas called Workflow1111, announced on the Hugging Face blog. The whole thing runs in your browser. No local install required.
What exactly did they build?
Workflow1111 is a graph of 73 nodes, where each node is one small job: resize an image, call an AI model, stitch four pictures into a grid. Lines between nodes show how data flows from one job to the next. The result is eleven complete pipelines covering the features most people actually use.
Here is what those eleven pipelines do:
| Pipeline | What it does |
|---|---|
| Text-to-image | Type a prompt, get a picture |
| Hi-resolution fix | Sharpens and enlarges the output |
| Image-to-image | Upload a photo, describe the change you want |
| LLM prompt writer | Expands a rough idea into a detailed prompt |
| VLM interrogate | Reads an image and writes a prompt that could have made it |
| Detection-to-inpaint | Automatically draws a selection mask around detected objects |
| Prompt matrix | Generates a grid of variants from one base prompt |
| Upscale and background removal | Enlarges or strips the background from any image |
| Annotators | Extracts edges, lines or depth maps for use with ControlNet-style tools |
| PNG Info | Reads the settings baked into any image the tool generated |
| Image-to-video | Animates a still image into a short video clip |
The hi-resolution fix and image-to-image pipelines both use FLUX.1-Kontext, a model that can edit images from a plain-text instruction. The image-to-video pipeline uses Wan 2.2 I2V, which takes a still photo and produces a short animation.
Do you need a powerful computer to run this?
No. That is the key practical point. When a node calls an AI model, the processing happens on Hugging Face's servers or on a separate hosted Space (a self-contained mini-app on the Hugging Face platform). Your laptop just sends the request and shows the result.
You sign in with a free Hugging Face account and the calls draw from your own account's quota. For the 22 nodes that are plain Python functions, such as edge detection or image resizing, the work runs locally in the browser process and costs nothing.
If you do own a capable graphics card (a GPU, the specialised chip that runs most AI workloads), you can point the canvas at your own machine instead. The tool is flexible enough to swap hosted model calls for local ones with a small code change.
What does this mean for people making AI images?
For casual users, it means a friendlier on-ramp to serious image tools. No command-line setup. No dependency errors. You open the canvas, sign in, and the pipelines are already wired together.
For developers, every output node in the canvas automatically becomes a REST endpoint, a web address other programs can send requests to, with no extra code to write. Workflow1111 exposes nine of them out of the box.
The canvas is also open to duplicate and rewire on Hugging Face, so anyone can fork it, pull out the pipelines they want, and add their own nodes.
Common questions
Is Workflow1111 the same as AUTOMATIC1111?
Not quite. Workflow1111 recreates most of the popular features, but it runs in a browser canvas rather than as a locally installed desktop app, and it uses newer models for some tasks where AUTOMATIC1111 used older ones.
Do I need to pay for this?
The canvas itself is free to open. Model calls draw from your Hugging Face account's free quota. Heavy use may consume that quota quickly, and Hugging Face offers paid plans for more capacity.



