Search Beyond What Can Be Taught: Evolving the Knowledge Boundary in Agentic Visual Generation
arXiv · HuggingFace · ▲85
Abstract (verbatim)
Visual generators excel at rendering, but they confidently fabricate what they do not know. User requests are unbounded, evolving, and deeply long-tailed: new characters, trending entities, post-cutoff events, and more. This world-knowledge bottleneck is structural: generators are trained on fixed corpora, but the visual world is open-ended. We construct SearchGen-20K and SearchGen-Bench, with 20,839 prompts spanning twelve failure categories and twenty-two domains, paired with a pre-executed multimodal SearchGen-Corpus-1M to support offline, reproducible research. On SearchGen-Bench, frontier open generators score only 21 to 28 out of 100, a 40-point collapse invisible to existing benchmarks. The natural remedy is to employ search tools, enabling agentic visual generation. However, we find that naive search fails: it retrieves indiscriminately, injecting noise into prompts the generator already handles. We trace the root cause to a generator-specific, evolving knowledge boundary: the divide between what a generator can internalize through training and what must remain in external context. Although this boundary is hard to specify in advance, we show that it is discoverable through a teach-then-search co-training framework. Even a minimal version of this co-training recipe produces monotonic improvement, laying the foundation for recursive self-improvement in visual generation that can meet world-knowledge-grounded requests. We release the full dataset, co-training corpus, and search corpus as a replayable harness for tool-augmented, world-knowledge-grounded visual generation.
Background
Background Analysis
1. Technical Context and Real-World Needs
Visual generation technologies (e.g., text-to-image models) excel at creating high-quality static images but face a core limitation: world knowledge constraints. Real-world user requests are dynamic and long-tailed (e.g., the 2025 Osaka Expo mascot, historically accurate Spartan phalanxes), while model training data is static and cutoff-bound. This mismatch causes models to "confidently fabricate incorrect content" when encountering unknown entities (e.g., emerging cultural symbols, real-time events). The challenge is to enable models to dynamically acquire and integrate external knowledge while preserving their creative capabilities.
2. Previous Limitations
Two critical flaws in prior approaches:
- Evaluation Gap: Traditional benchmarks (e.g., MS-COCO) fail to expose "world knowledge failures" because they focus on standardized scenarios. For example, frontier models score 40 points lower than commercial APIs on SearchGen-Bench, a gap ignored by existing benchmarks.
- Blind Search: Directly equipping models with search tools (e.g., retrieval-augmented generation) introduces noise. Models cannot distinguish useful information from distractions, leading to concept corruption or style contamination. The root issue is the coordination problem between generators and search tools—models need to decide "when to search" and "what to search for," which prior methods lack.
3. Proposed Solution
The paper introduces a co-training framework with two key innovations:
- Noise-Resistant Agentic Reasoner: A three-stage pipeline (decide to search → filter noise → integrate valid information) ensures search results do not degrade generation quality.
- Joint Training of Generation and Search: Iterative optimization teaches the model to "internalize learnable knowledge" (e.g., canonical appearances of symbols) while training the reasoner to "search only when the model fails" (e.g., long-tail entities or real-time events). This creates a "self-improvement loop": as the model’s capabilities grow, the reasoner’s search scope automatically adjusts to new demands.
4. Key Differences from Prior Work
- Dynamic Knowledge Boundary: Unlike prior work that assumes full knowledge internalization or indiscriminate search, this paper explicitly addresses the dynamic boundary between learnable and non-learnable knowledge, solving it with co-training.
- Noise Control: Instead of directly feeding search results to models, this work introduces noise-filtering mechanisms to prevent irrelevant information from misleading generation.
- Practical Benchmarking: SearchGen-20K and SearchGen-Bench systematically quantify "world knowledge failures" and provide a reproducible toolchain, shifting the field from "closed-scenario optimization" to "open-world adaptation."
This research paves the way for future visual generation: by dynamically coordinating internal knowledge and external search, models can progressively expand their capabilities to meet users’ long-tail needs.












