Rebuilding AUTOMATIC1111 with Gradio Workflow
Back to Articles Rebuilding AUTOMATIC1111 with Gradio Workflow Published September 10, 2026 Update on GitHub Upvote 8 +2 yuvraj sharma ysharma Follow Abubakar Abid abidlabs Follow In our last post, we built five small gr.
Workflow graphs and hinted at what it would take to build something as complex as AUTOMATIC1111's stable-diffusion-webui.In this post we walk you through Workflow1111, where we have rebuilt most of AUTOMATIC1111's feature set as a single workflow canvas.
Workflow1111 is a graph of eleven media pipelines built using seventy-three nodes.
It brings together SOTA models for text-to-image, hi-resolution fix, image-to-image, prompt-matrix grids, VLM interrogate, detection-to-inpaint masks, ControlNet-style annotators, background removal, PNG Info storing, and image-to-video.
You can run any of these pipelines by signing in with your Hugging Face account or providing an access token.Once you sign in, the model calls use your own quota.👉 Try Workflow1111, or duplicate the Space and start rewiring it for your own use case.Let's walk the canvas.
What's on the canvas All the media pipelines are built from the same four operator kinds covered in our last post and the official guide.Each node on the canvas wraps one operator, and the operator's inputs and outputs become the ports you connect edges to.
As a quick reference on our four operator kinds: fn is a Python function, model is a model called through InferenceClient, space is another Gradio Space, and dataset is a row from a Hub dataset.Let's go through the pipelines one by one.Text-to-image This is the core pipeline.
It has the controls you'd expect from A1111's txt2img tab: negative prompt, steps, CFG, seed, width and height, plus a modelid field for choosing the checkpoint.
The prompt goes through a prompt-builder fn node first, which appends the selected style preset and cleans up the text, then into a model node that calls the checkpoint through Inference Providers.
A post-process fn node writes the generation parameters into the PNG's metadata on the way out, which is what the PNG Info pipeline reads back later.Hi-resolution fix In Automatic1111, hi-resolution fix first upscales the txt2img output and then runs a second denoising pass.
Here it's a two-node detour instead.The text-to-image result goes into a FLUX.1-Kontext model node with a refine instruction ("enhance fine detail and micro-texture, keep the composition identical") and comes back sharper and larger.
Image-to-image That same Kontext node doubles as the image-to-image tab.Upload an image, describe the change you want, and it returns the edited image.Let an LLM write the prompt Start with a rough prompt like "A lighthouse in a storm.
" This pipeline sends it to a Qwen3-4B model node, and a small fn node turns the reply into a clean list of tags, capped at forty: "stormy sea, wet rocks, dramatic composition, low angle shot, volumetric lighting, ominous tone.
" You can connect any diffusion model node to this output to render the image.There's no custom node involved, unlike in ComfyUI.In a Gradio workflow the LLM and the diffusion model are both ordinary model operators on the same canvas.
Read an image back into a prompt This is like AUTOMATIC1111's Interrogate button, with a VLM doing the interrogating instead of CLIP.Qwen2.5-VL looks at a night-market photo and writes a prompt that could have produced it.A ViT classifier node reads the same image and returns labels: restaurant 51.
9%, tobacco shop 15.6%, toyshop 9.1%.Both nodes use the same image input, so gr.Workflow runs them in parallel and you get both answers in roughly the time it takes to run one.Detection to inpaint mask AUTOMATIC1111 makes you paint an inpaint mask by hand.
This pipeline generates one from a detector instead.
DETR finds six objects in a street photo (three people, a dog, a bicycle, and a car), and from there the workflow splits into two branches: one draws the detected boxes on the original image, the other turns them into a mask you can feed into an inpaint pipeline downstream.
The drawing and the mask creation both happen locally with Pillow and NumPy.Only the detection call leaves the machine.Prompt matrix This is like AUTOMATIC1111's prompt matrix.
A base prompt, "a lone oak tree," gets combined with four suffixes (at sunrise, in a thunderstorm, under the Milky Way, in autumn fog) by a fn node, and each variant goes to its own text-to-image node.A final node stitches the four results into one contact sheet.gr.
Workflow has no loop operator, so the four text-to-image nodes sit side by side on the canvas.Since they're at the same dependency depth they run in parallel, and all four images start generating at once.Upscale and background removal This is like the Extras tab in Automatic1111.
There are two upscaler nodes, and they take different routes.The first is a local Lanczos resample in an fn node, which needs no network call and finishes as fast as Pillow can resize.
The second is AuraSR ×4, and it's the first space node on the canvas: it calls a Space on the Hub and treats the result like any other node output.Background removal works the same way.BRIA RMBG-2.0 is another space node, so the whole model lives in its own Space and this canvas just calls it in.
Annotators Canny, line art, sketch, luma-depth, and posterize are the preprocessors you'd normally get from the ControlNet extension in Automatic1111.Here, each one is a fn node written in plain NumPy, with no model behind it.
On a pre-loaded example photo of a building facade, each annotator takes about half a second on CPU.There are 36 operator nodes in the app, 32 are fn nodes, and 22 of those run entirely in-process without a network call.Roughly two-thirds of the canvas keeps working if you lose your connection.
Since these are regular Python functions, you can also test them directly, with no canvas, server, or GPU involved.PNG Info AUTOMATIC1111 stores generation details in the PNG's parameters text chunk, and the PNG Info tab reads them back.Workflow1111 does the same.
The post-process node on the text-to-image pipeline writes the metadata, and this pipeline reads it back out, including the prompt, negative prompt, steps, CFG, seed, image size, and model.Image-to-video The image node that PNG Info reads from also feeds a Wan 2.
2 I2V A14B node, which animates it; in the demo example a sleeping fox wakes up and starts moving.There's no second upload box because one reference node can feed as many downstream pipelines as you need, so a single upload gets its metadata read and gets animated on the same canvas.
Running models on your own GPU So far every model call has gone to someone else's hardware, through Inference Providers or a Space.That's why you can build and run something like Workflow1111 without a GPU of your own.
A fn node is just Python, though, so it can equally load a model locally and run it on your own GPU.FastVideo/fastvideo-fasth3-preview is a gr.Workflow app that does exactly that.It runs FastH3, a four-step distillation of MiniMax-H3, and generates video with a soundtrack on ZeroGPU.
The whole app comes down to one bound function: @spaces.GPU(duration=getduration, size=GPUSIZE) def generate(promptembeds, texttokentags, height, width, numframes, seed): ...gr.Workflow(bind={"generate": generate, "status": status}).
launch() ZeroGPU gives the function a GPU when it needs one, then releases it when the call is done.gr.Workflow doesn't need to know about any of that.It just calls the fn node.This isn't specific to Spaces either.Point bind= to a function that loads a local checkpoint, run .
launch() on your own machine, and the Workflow1111 canvas can drive your own GPU.Every output is an API Every output node on the canvas becomes a REST endpoint, with no routes written by hand.
Workflow1111 exposes nine of them: /image, /editedimage, /generatedprompt, /recoveredprompt, /detectedobjects, /xygrid, /upscaledlocal, /annotatormap, and /pnginfo.from gradioclient import Client client = Client("ysharma/Workflow1111", oauthtoken="hf...") image, params, hires = client.
predict( "a red fox in a snowy pine forest", # Prompt "", # Negative prompt "Cinematic", # Style preset "enhance fine detail", # Hires refine instruction apiname="/image", ) The same endpoints are also MCP tools.
Launch with mcpserver=True (guide) and every output node shows up as a tool an AI assistant can call.Point Claude Code, Cursor, or any MCP client at the server URL: { "mcpServers": { "workflow1111": { "url": "https://ysharma-workflow1111.hf.space/gradioapi/mcp/", "headers": { "X-HF-Token": "hf...
" } } } } Now an agent can generate an image, read a prompt back out, or run detection as steps in a larger task, with no glue code.Each caller sends their own token in the X-HF-Token header, so the Space holds none of its own.
Where this sits next to ComfyUI AUTOMATIC1111 gave us the feature list, but the tool Gradio Workflow really gets compared to is ComfyUI, since both are node graphs.For a lot of what people want to build and ship, gr.Workflow covers the same ground.A node can be hardware you don't own.
It can run through Inference Providers, call any Space on the Hub or any API, or pull from a dataset.That's how Workflow1111 runs without a GPU of its own.Every output becomes a typed REST endpoint.The endpoints are generated from the graph.Visitors can run workflows under their own identity.
Turn on OAuth, share the public URL, and anyone can sign in and use the app without installing anything.Mix models and modalities on the same canvas.Diffusion models, LLMs, VLMs, detectors, and video models can all be part of the same workflow.Need something custom?Write a function.
A custom node is a Python function, so it can do whatever Python can.The result is a multi-model pipeline that people can open in a browser, sign into, use right away, and call from code.
Build your own Workflow1111 has 73 nodes, but it started with just this: import gradio as gr def yourfunction(text: str) -> str: pass gr.Workflow(bind=[yourfunction]).launch() bind= turns your functions into nodes, edges= connects them, and .
launch() opens the canvas in your browser so you can keep editing there.When it's ready, gradio deploy puts the whole thing on a Space.The gr.Workflow guide has the full details, including the JSON schema and every operator type.
If you'd rather start from something that already works, open Workflow1111, hit Duplicate, and pick one of the eleven pipelines to change: delete nodes, swap models, rewire the flow.If you'd rather start smaller, the previous post has five workflows you can get running in about a minute each.
Whatever you build, post it on X and tag @gradio.We'd be happy to amplify your workflows.
Models mentioned in this article 8 Spaces mentioned in this article 4 More Articles from our Blog gradioworkflowstutorial Wire It, Run It, Deploy It: AI Workflows in Gradio 45 August 25, 2026 comfyuigradiospaces Run ComfyUI workflows for free with Gradio on Hugging Face Spaces 98 January 14, 2024 Community Fsecurityturism about 21 hours ago Really impressive breakdown the part that stands out most is how the graph structure gives you free parallelism (the prompt-matrix and interrogate examples) without any extra orchestration code.
The mix of fn, model, and space node types on one canvas also makes the ComfyUI comparison land well: you get custom-node flexibility from plain Python, but zero-code REST/MCP endpoints for free.
Curious how complex a canvas can get before performance or maintainability becomes a concern has anyone pushed past 73 nodes Reply EditPreview Upload images, audio, and videos by dragging in the text input, pasting, or clicking here.
Tap or paste here to upload images Comment · Sign up or log in to comment Upvote 8 Models mentioned in this article 8 Spaces mentioned in this article 4
Related
相關文章

創意任務解決率95%,讓視覺AI自己練習,還能把經驗帶到視頻
在視覺AI領域,一項最新進展顯示,該技術在創意類任務中的解決率已達到95%。這項成果並非來自人工干預或反覆調參,而是透過讓AI自行積累與驗證有效的運作流程,逐步提升對複雜任務的處理能力。不僅如此,這種自我練習所獲得的經驗還能被順暢遷移至視頻領域,進一步拓展應用場景。 據了解,這套方法的核心在於讓AI在執行創意任務的過程中,自動記錄哪些工作流能帶來最佳成效,並反覆驗證其可靠性。

從技術炫技到交付為王,AI辦公“四強”並立
從技術炫技到交付為王,AI辦公「四強」並立 AI辦公賽道的敘事重心正在轉移。過去一段時間,外界評估這類產品時,最常被拿出來討論的是模型能力、生成速度與演示效果;如今,討論的重點逐漸轉向更務實的問題——產品究竟能不能被真正導入日常工作、能不能穩定地交付可用的結果。伴隨這個轉向,市場格局也從早期的多方競逐,收斂成「四強」並立的局面。 在生成式AI剛進入辦公場景時,技術展示幾乎是唯一的競爭語言。誰能在會議紀要、文件起草、資料整理、簡報生成這些場景裡做出更吸睛的效果,誰就更容易拿到關注。
影視颶風Tim稱「iPhoneDuo燙到握不住,可以煎雞蛋」;羅福莉直播小米大模型訓練,每小時燒掉超20萬元;曝瑪莎拉蒂與華為合作兩款新車
要聞提示1.影視颶風Tim稱“iPhoneDuo燙到握不住,可以煎雞蛋”,蘋果客服回應2.你會買嗎?曝瑪莎拉蒂已與華為敲定合作兩款新車:尊界工廠負責製造3.每小時“燒掉”超20萬元!“AI才女”羅福莉直播小米大模型訓練4.華為汪濤:昇騰960芯片將提前至2027年Q1發佈5.
微軟Anthropic爭擬人AI
微軟Anthropic爭擬人AI。 Reddit帖擬人AI爭辯梳理兩邊分歧。Suleyman稱模型只是補全器���。Anthropic認為不確定性要認真處理。產品設計會受影響。
Microsoft Open-Sources TauGrid: A Kubernetes-Native Stack for GPU AI Workloads
Platform teams running AI on Kubernetes rarely run one thing. They run a queueing system, a distributed runtime, GPU node health checks, dashboards, and a layer of submission scripts holding all of it together.