Daily News · 1 min read

Hugging Face AI Updates: September 11, 2026

1. Gradio Workflow Rebuilt AUTOMATIC1111 as 73 Nodes on a Single Canvas

Hugging Face. Gradio Workflow is a node-based canvas for wiring multi-model pipelines without writing routing or orchestration code, and the team used it to recreate most of the AUTOMATIC1111 stable-diffusion-webui feature set as one graph. Workflow1111 spans 73 nodes across 11 media pipelines covering text-to-image, hi-res upscaling, image-to-image, LLM prompt optimization, vision-model interrogation, detection-based inpainting masks, prompt matrices, background removal, metadata handling, and image-to-video. Four operator types are supported: fn for local Python functions, model for Inference API calls, space for other Gradio Spaces, and dataset for Hub datasets, with roughly two-thirds of nodes running locally with no network call. Every output becomes a typed REST endpoint generated from the graph, and nodes double as MCP tools, so a node can be hardware you do not own. Source