mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-28 17:59:25 -05:00
[PR #17734] [CLOSED] [Microservice] Add ComfyUI Service with Fal.ai IntegrationFeat/perry comfyui deployment #11326
Reference in New Issue
Block a user
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/17734
Author: @PerryPAN219
Created: 9/25/2025
Status: ❌ Closed
Base:
main← Head:feat/perry-comfyui-deployment📝 Commits (2)
3e95e7cScaffold Setup, setup guide and updated docker-compose configuration:48cde43Add ComfyUI service with image-to-image Fal.ai integration📊 Changes
12 files changed (+1364 additions, -13 deletions)
View changed files
📝
backend/open_webui/config.py(+13 -0)📝
backend/open_webui/env.py(+1 -0)➕
comfyui-service/.gitignore(+62 -0)➕
comfyui-service/Dockerfile(+35 -0)➕
comfyui-service/README.md(+126 -0)➕
comfyui-service/api/__init__.py(+7 -0)➕
comfyui-service/api/routes.py(+571 -0)➕
comfyui-service/docker-compose.yml(+31 -0)➕
comfyui-service/main.py(+230 -0)➕
comfyui-service/requirements.txt(+9 -0)📝
docker-compose.yaml(+24 -13)➕
setupguide.md(+255 -0)📄 Description
Summary
This PR introduces a new ComfyUI Microservice for AI image generation, integrated into the CerebraUI platform.
It provides core workflows (text-to-image, image-to-image, multimodal, and fashion transfer) with FastAPI-based endpoints.
Key Features
Technical Highlights
comfyui-service/directory to avoid conflicts with other modulesapi/,utils/,models/,tests/,main.py,Dockerfile)Validation
Next Steps
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
How to Run