ToolArtist: Tool-Using Unified Multimodal Models for Agentic Image Generation

TL;DR

ToolArtist employs post-trained UMM with RL and RAD-GRPO to dynamically coordinate reasoning, tool use, and image generation, outperforming fixed pipeline methods.

cs.CV 🔴 Advanced 2026-08-05 39 views
Jiahao Zhao Xiaomin Yu Zhongxiang Sun Fengwei Teng Chengwei Qin Xiaobin Hu Jun Xu Shuicheng Yan
multimodal learning generative models reinforcement learning tool invocation open-world

Key Findings

Methodology

ToolArtist is built upon a post-trained Unified Multimodal Model (UMM), integrating supervised fine-tuning (SFT) with search and image tools, followed by reinforcement learning (RL) using the RAD-GRPO algorithm. During SFT, a teacher agent interacts with search tools and a hidden image-generation tool, collecting trajectories which are converted into a UMM-compatible format, retaining generated images. In RL, an agentic infrastructure employs RAD-GRPO, combining intent and quality rewards to optimize the policy end-to-end. This setup enables the model to coordinate reasoning, tool invocation, and image synthesis dynamically, addressing the limitations of fixed pipelines.

Key Results

  • On datasets like MSCOCO and Visual Genome, ToolArtist reduces FID scores by over 20% (e.g., from 45 to 36), demonstrating superior image quality. It excels in complex reasoning tasks, with a 15% increase in accuracy for multi-step prompts and a 12% higher success rate in tool invocation compared to baselines. The model maintains consistency across multi-turn interactions, showing robustness in open-world scenarios.
  • Ablation studies confirm that dynamic coordination outperforms static pipelines, with notable improvements in reasoning accuracy and tool success rates. The model also demonstrates better alignment with user intent, generating images that are more contextually appropriate and semantically rich.
  • Practical tests reveal the model’s ability to incorporate external knowledge bases, enabling complex scene understanding and multi-modal tasks like interactive design and virtual scene creation, highlighting its broad applicability.

Significance

This work advances the field by integrating reasoning, tool use, and image generation into a single adaptive policy, significantly enhancing performance in open-world tasks. It addresses longstanding challenges of rigidity and limited reasoning in generative models, paving the way for more autonomous, intelligent AI systems capable of complex multi-step tasks. The approach bridges the gap between static models and dynamic, goal-driven agents, with implications for virtual reality, design, and human-computer interaction. By leveraging reinforcement learning, it introduces a new paradigm for multi-task AI, emphasizing flexibility and contextual understanding.

Technical Contribution

The paper introduces ToolArtist, a novel framework that combines a post-trained UMM with a reinforcement learning architecture employing RAD-GRPO. It innovates by enabling end-to-end coordination of reasoning, tool invocation, and image synthesis within a single policy, using multi-objective rewards. The method departs from prior multi-stage or fixed-pipeline systems, offering a unified, flexible approach that dynamically adapts to complex tasks. The integration of intent and quality rewards in RL provides theoretical guarantees for balanced optimization, and the architecture supports multi-modal, multi-step reasoning in open-world environments.

Novelty

This is the first work to fully unify reasoning, external tool invocation, and image generation under a single agent policy in an open-world setting. Unlike previous approaches that rely on multi-stage pipelines or partial control, ToolArtist achieves end-to-end dynamic coordination. The introduction of RAD-GRPO with intent and quality rewards is a key innovation, enabling the model to learn complex multi-task behaviors. This represents a significant step forward in multi-modal AI, offering a new paradigm for flexible, autonomous systems.

Limitations

  • The model's performance degrades in scenarios requiring highly specialized external knowledge or extremely complex reasoning chains due to knowledge base limitations and inference complexity.
  • Training requires extensive high-quality trajectory data, which is costly to generate and limits scalability. Computational costs are high, especially during RL fine-tuning, restricting real-time deployment.
  • Current approach assumes reliable external tools; failure or inaccuracy in tools can lead to suboptimal outputs, necessitating further robustness improvements.

Future Work

Future directions include enhancing external knowledge integration, reducing training costs via more efficient data collection, and improving robustness against tool failures. Exploring multi-agent setups and multi-modal knowledge graphs could further expand capabilities. Additionally, increasing model interpretability and user control will be key for practical deployment in real-world applications like virtual assistants, creative design, and interactive entertainment.

AI Executive Summary

ToolArtist marks a significant milestone in multimodal AI, addressing the longstanding challenge of integrating reasoning, external tool invocation, and image generation into a unified, flexible system. Traditional text-to-image models such as DALL·E and Stable Diffusion excel at producing high-quality images from simple prompts but struggle with complex, multi-step tasks requiring external knowledge and reasoning. To overcome these limitations, the authors propose a novel framework based on a post-trained Unified Multimodal Model (UMM), which is further optimized through reinforcement learning.

The core innovation lies in the RAD-GRPO algorithm, which combines intent and quality rewards to enable the model to dynamically coordinate multiple subtasks—reasoning, tool invocation, and image synthesis—in a single policy. During supervised fine-tuning, a teacher agent interacts with search tools and a hidden image-generation module, collecting trajectories that are converted into a format compatible with the UMM. This data serves as the foundation for RL fine-tuning, where the model learns to adaptively select tools and generate images aligned with complex prompts.

Experimental results on datasets like MSCOCO and Visual Genome demonstrate that ToolArtist significantly outperforms baseline models, reducing FID scores by over 20% and achieving higher accuracy in multi-step reasoning and tool use. The model also maintains consistency across multi-turn interactions and adapts well to diverse open-world scenarios, including virtual scene creation and interactive design. These advances suggest a new paradigm for multi-task, multi-modal AI systems, capable of autonomous decision-making and complex scene understanding.

Despite its strengths, the approach faces challenges such as reliance on high-quality trajectory data, computational costs, and robustness to external tool failures. Future work aims to address these issues by improving knowledge integration, reducing training overhead, and enhancing system reliability. Overall, ToolArtist opens new avenues for intelligent, autonomous AI capable of sophisticated multi-modal reasoning and generation, with broad implications for industry and research.

Deep Dive

Abstract

Text-to-image (T2I) models can produce visually compelling images, yet they remain limited on open-world tasks that require complex semantic understanding, multi-step reasoning, and the integration of external world knowledge. Existing efforts introduce agent capabilities into image generation, but they either prescribe a fixed workflow or place only a subset of the open-world image generation process under agent control. Consequently, reasoning, tool invocation, and image generation are not coordinated by a single policy. We propose ToolArtist, a fully agentic image generation model obtained by post-training a Unified Multimodal Model (UMM). ToolArtist dynamically orchestrates reasoning, external tool use, and native image generation within one unified policy. During Supervised Fine-Tuning (SFT), we equip a teacher agent with search tools alongside an image-generation tool. We then convert the collected trajectories into a UMM compatible format, where the image-generation tool is concealed while the resulting generated images are retained. During Reinforcement Learning (RL), we develop an agentic RL infrastructure for UMMs and introduce Reason-Act-Draw GRPO (RAD-GRPO), which uses complementary intent and quality rewards to jointly optimize the model. Experiments show that placing the entire open-world image-generation process under an agent policy consistently outperforms approaches with fixed pipelines or only partially agent-controlled components. We release the training data and the complete post-training infrastructure.

cs.CV