Led the R&D of the first closed-loop intelligent agent framework for visual content generation that integrates "underlying model capability perception" with "high-level reinforcement fine-tuning," significantly boosting complex semantic alignment and execution success rates.
1
stars
14
commits
Python
primary language
Mar 23, 2026
updated
**** is an out-of-the-box Multi-Agent AIGC workflow orchestration system. It is specifically designed to address the "Scheduling Hallucination"—a common issue where Large Language Models (LLMs) fail when invoking underlying image generation or editing tools, resulting in task planning breakdowns and arbitrary tool selection due to a lack of understanding regarding the actual capability boundaries of the underlying models.
By introducing a quantified, multi-dimensional performance matrix alongside a closed-loop reinforcement fine-tuning mechanism based on real-world visual feedback, AIGC-Nexus achieves a precise and dynamic distribution process—seamlessly translating vague textual intentions into the optimal visual generation tools.
When building long-chain agents for text-to-image generation, relying solely on text prompts to let LLMs select tools (such as FLUX, SD3, or various editing models) often leads to extremely high failure rates. AIGC-Nexus offers an industrial-grade solution:
conda create -n AIGC-Nexus python=3.10
conda activate AIGC-Nexus
Install MetaGPT
Please go to the following GitHub repository to install the necessary tool dependencies.
https://github.com/HaozheZhao/UltraEdit
https://github.com/HuiZhang0812/CreatiLayout
https://github.com/stepfun-ai/Step1X-Edit
https://github.com/weichow23/AnySD
https://github.com/bytedance/DreamO
https://github.com/Xiaojiu-z/EasyControl
https://github.com/tencent-ailab/IP-Adapter
4. Install the remaining dependencies
```shell
pip install -r requirement.txt
export VLLM_USE_MODELSCOPE=True
vllm serve Qwen/Qwen3-14B --port 8001
vllm serve your_planner_checkpoint --port 8002
./configpython run.py
/AIGC-Nexus ├── configs/ # System configurations, model routing matrix, and Agent Prompts ├── AIGC-Nexus/ # Core source code package │ ├── agents/ # Multi-agent role definitions (Analyst, Planner, Worker, Evaluator) │ ├── routing/ # PASM Performance-Aware Routing Module & APU Dynamic Update Engine │ ├── tools/ # Low-level vision model integration layer (Diffusers/ControlNet wrappers) │ └── trainer/ # CAPO Planner DPO fine-tuning scripts ├── examples/ # Common use cases and Jupyter Notebooks ├── scripts/ # One-click startup and environment testing scripts ├── requirements.txt # Dependency list └── README.md
14 commits
Python
100.0%
Led the R&D of the first closed-loop intelligent agent framework for visual content generation that integrates "underlying model capability perception" with "high-level reinforcement fine-tuning," significantly boosting complex semantic alignment and execution success rates.
1
stars
14
commits
Python
primary language
Mar 23, 2026
updated
**** is an out-of-the-box Multi-Agent AIGC workflow orchestration system. It is specifically designed to address the "Scheduling Hallucination"—a common issue where Large Language Models (LLMs) fail when invoking underlying image generation or editing tools, resulting in task planning breakdowns and arbitrary tool selection due to a lack of understanding regarding the actual capability boundaries of the underlying models.
By introducing a quantified, multi-dimensional performance matrix alongside a closed-loop reinforcement fine-tuning mechanism based on real-world visual feedback, AIGC-Nexus achieves a precise and dynamic distribution process—seamlessly translating vague textual intentions into the optimal visual generation tools.
When building long-chain agents for text-to-image generation, relying solely on text prompts to let LLMs select tools (such as FLUX, SD3, or various editing models) often leads to extremely high failure rates. AIGC-Nexus offers an industrial-grade solution:
conda create -n AIGC-Nexus python=3.10
conda activate AIGC-Nexus
Install MetaGPT
Please go to the following GitHub repository to install the necessary tool dependencies.
https://github.com/HaozheZhao/UltraEdit
https://github.com/HuiZhang0812/CreatiLayout
https://github.com/stepfun-ai/Step1X-Edit
https://github.com/weichow23/AnySD
https://github.com/bytedance/DreamO
https://github.com/Xiaojiu-z/EasyControl
https://github.com/tencent-ailab/IP-Adapter
4. Install the remaining dependencies
```shell
pip install -r requirement.txt
export VLLM_USE_MODELSCOPE=True
vllm serve Qwen/Qwen3-14B --port 8001
vllm serve your_planner_checkpoint --port 8002
./configpython run.py
/AIGC-Nexus ├── configs/ # System configurations, model routing matrix, and Agent Prompts ├── AIGC-Nexus/ # Core source code package │ ├── agents/ # Multi-agent role definitions (Analyst, Planner, Worker, Evaluator) │ ├── routing/ # PASM Performance-Aware Routing Module & APU Dynamic Update Engine │ ├── tools/ # Low-level vision model integration layer (Diffusers/ControlNet wrappers) │ └── trainer/ # CAPO Planner DPO fine-tuning scripts ├── examples/ # Common use cases and Jupyter Notebooks ├── scripts/ # One-click startup and environment testing scripts ├── requirements.txt # Dependency list └── README.md
14 commits
Python
100.0%