June 30, 2026
Ideation plays a pivotal role in scientific discovery. Recent LLM, especially AI Scientist systems, show promising potential for automated ideation. However, existing approaches predominantly rely on pre-defined agentic workflows. This constraint severely limits the flexibility required to navigate the vast search space of scientific literature and the complex action space of research reasoning. Recently, training Agentic LLMs has emerged as a promising direction, offering flexible reasoning frameworks and the capability for autonomous tool utilization. However, there remains a non-trivial challenge: applying previous agentic data synthesis methods to scientific ideation suffers from prohibitively high data synthesis cost. To bridge this gap, we propose Agentic-Ideation, a novel framework comprising an automated trajectory synthesis pipeline and a specialized agentic LLM trained for scientific ideation. Specifically, we first define a comprehensive tool space incorporating three external tools and three cognitive tools. Then we introduce an Oracle-Guided Data Synthesis strategy. By leveraging a reference idea as oracle guidance, this approach steers the multi-agent system to efficiently reconstruct the logical reasoning and tool invocation paths, transforming aimless trial-and-error into directed trajectory generation. Finally, we train the agent on these synthesized trajectories, employing a masking strategy on tool execution results. This ensures the model focuses on decision-making logic without interference from external feedback. Experimental results demonstrate that our method outperforms the SOTA workflow-based baseline by 11.91% in overall quality. Furthermore, our approach improves the sample efficiency of high-quality data synthesis by over 10\(\times\).
Scientific ideation serves as the genesis of the entire research lifecycle, fundamentally determining the novelty and potential impact of downstream discoveries. Recently, the rapid evolution of Large Language Models (LLMs) has catalyzed the vision of an "AI Scientist" [1]–[3], capable of automating complex research tasks ranging from initial idea generation [4], [5] to final manuscript preparation [6]–[8].
Despite this priority, previous approaches predominantly rely on pre-defined workflows [9], [10]. These methods typically constrain Large Language Models (LLMs) to execute pre-defined, linear sequences, such as literature retrieval followed by template filling. Crucially, the efficacy of these rigid pipelines depends heavily on complex, human-designed prompts meticulously crafted to guide the model through each step. This reliance on static, hand-crafted engineering restricts flexibility [11], [12], failing to navigate the vast search space of literature where researchers must adaptively select tools and refine reasoning. To transcend these limitations, training Agentic LLMs has emerged as a promising frontier. Unlike static workflows, agentic models offer a flexible reasoning framework with the potential to autonomously orchestrate tools and adaptively navigate the research space without being bound by brittle scripts [13], [14].
However, training such agentic models is non-trivial, primarily due to the challenge of efficiently synthesizing high-quality agentic trajectory data. Existing data synthesis frameworks for agents generally focus on tasks with definite answers, such as multi-hop Question Answering (QA) [15], [16]. In these scenarios, high-quality trajectories are typically filtered via rejection sampling [17], where the correctness of the final answer serves as a clear ground truth signal to validate the reasoning path. Unfortunately, this paradigm is ill-suited for scientific ideation. Unlike QA, ideation involves a vast and open-ended answer space where no single "correct" solution exists [18], [19]. Consequently, applying standard rejection sampling leads to prohibitively low sample efficiency, as unguided models struggle to navigate this immense search space to yield high-quality ideas, rendering the data synthesis process computationally expensive and ineffective.
To tackle these challenges, we introduce Agentic-Ideation, a comprehensive framework designed for efficient agentic data synthesis and robust model training. We first meticulously define the agent’s hybrid tool space, which comprises three external tools and three thinking tools. The external tools, including Search, Get_References and Get_Cited, empower the agent to access external APIs, thereby proactively expanding its knowledge boundaries beyond its internal parameters. Complementing these, the thinking tools, including Analyse_Gap, Ideation and Reflection, enable the agent to perform critical cognitive tasks, such as identifying research voids and iteratively refining ideas. To synthesize high-quality trajectories based on this action space, we construct a hierarchical multi-agent system consisting of a Planner, a Controller, and six specialized tool agents. In this architecture, the Planner orchestrates the high-level ideation strategy, while the Controller manages fine-grained tool selection and execution at each step.
Notably, we endow agents with an oracle view of the high-quality "reference idea," acting as a navigational beacon to maximize sample efficiency. Instead of aimlessly exploring the vast action space, this guidance transforms the synthesis process from a stochastic search into a directed trajectory reconstruction. By leveraging this "foresight," the system can generate a valid, logically coherent reasoning path in a single pass. This fundamentally circumvents the massive computational waste inherent in traditional rejection sampling, where valid trajectories are sparsely distilled only after exhaustive, undirected "hindsight" trial-and-error. Finally, we utilize these high-quality trajectories to train the target agent, equipping it with the capability to perform grounded reasoning and autonomous exploration for open-ended scientific ideation. During this phase, we apply a strategic masking technique to the results returned by external tools. This critical design forces the model to focus on the reasoning behind tool invocation rather than memorizing specific return values, thereby avoiding interference from external feedback during the learning process and ensuring the generalization and robustness of the trained agent.
Extensive experiments demonstrate the superiority of our proposed framework. Quantitatively, our trained agentic LLM consistently outperforms all competitive baselines, achieving an 11.91% improvement in overall score compared to the state-of-the-art method, which empirically validates the effectiveness of our proposed agentic training paradigm. In terms of data construction, our approach achieves a remarkable efficiency boost, accelerating the synthesis of high-quality agentic trajectories by over tenfold compared to previous rejection sampling strategies. Furthermore, a comprehensive human evaluation confirms that the ideas generated by our agent exhibit higher novelty, feasibility, and scientific value, validating the practical utility of our method in real-world research scenarios.
Our contributions can be summarized as follows:
We pioneer the application of agentic LLMs to scientific ideation, offering a flexible and autonomous alternative to existing rigid, workflow-based approaches. This paradigm shift enables the model to adaptively navigate the complex search space of scientific ideas.
We propose a novel oracle-guided multi-agent data synthesis framework. By leveraging a global view to guide trajectory generation, we address the challenge of data scarcity and significantly enhance sample efficiency in the open-ended ideation domain.
We achieve SOTA results across all metrics, outperforming strong baselines and improving synthesis efficiency by over tenfold. Furthermore, human evaluation confirms our method generates more novel and feasible ideas.
The pursuit of AI Scientists envisions systems capable of automating the entire research lifecycle [20]–[22]. Central to this vision is Scientific Ideation, the foundational upstream phase that determines the novelty and validity of downstream experimentation [23], [24]. While recent works have explored various generation strategies. ResearchAgent [25] augments idea generation by utilizing a scientific knowledge graph and an iterative peer review mechanism, while SciPiP [26] employs a dual-path framework combining retrieval-based and generative approaches to balance novelty and feasibility. Focusing on uniqueness, SciMON [27] explicitly optimizes for novelty by iteratively retrieving inspirations from past literature to refine hypotheses, whereas VirSci [28] simulates a virtual research team where multiple agents collaboratively propose and evaluate ideas. Despite their specific innovations, these approaches share a critical limitation: they rely on fixed, static workflows driven by complex human-designed prompts. This rigidity constrains the model to follow pre-defined procedures, preventing the autonomous flexibility required for truly open-ended scientific exploration.
Distinct from rigid workflow-based systems, Agentic LLMs are defined by their autonomy in planning and invoking external tools to solve open-ended problems. To equip models with these capabilities, Agentic Data Synthesis shifts the training paradigm from learning static text to mimicking dynamic interaction trajectories, explicitly capturing the interplay between reasoning, tool execution, and environmental feedback. Recent works employ diverse strategies to synthesize agentic training data. AgentScaler [29] automates experience accumulation by formalizing environments as read-write databases to generate interaction logs, while WebDancer [30] captures end-to-end browser trajectories specifically tailored for complex "Deep Research" retrieval. Addressing reasoning depth, WebSailor [17] synthesizes high-difficulty tasks through graph sampling and information obfuscation, whereas WebWatcher [31] extends synthesis to the multimodal domain by integrating visual web contexts. However, these methods typically depend on outcome-based filtering mechanisms (e.g., rejection sampling or task completion verification) to ensure data quality. In the vast, open-ended answer space of scientific ideation, where unique ground truth or immediate success signals are absent, such strategies suffer from extremely low sample efficiency, as unguided exploration fails to consistently yield high-quality outcomes without explicit directional guidance.
The Agentic-Ideation framework streamlines autonomous scientific discovery through three integrated stages. First, we establish a hybrid tool space that combines external retrieval utilities with internal cognitive tools to support complex reasoning. Second, to overcome data scarcity, we employ an oracle-guided multi-agent system where a Planner and Controller, guided by "reference ideas," efficiently synthesize high-fidelity trajectories without relying on inefficient trial-and-error. Finally, the target LLM is trained via Supervised Fine-Tuning, where tool outputs are masked to ensure the model learns robust decision-making logic rather than memorizing external feedback. The overall framework of Agentic-Ideation are presented in Figure 1.
Scientific ideation is inherently an iterative cognitive process that oscillates between the extensive accumulation of domain knowledge and the intensive synthesis of novel ideas. To faithfully model this complex behavior, we define a comprehensive Agentic Tool Space that bridges the gap between retrieving external evidence and performing internal reasoning. We formalize this space as \(\mathcal{T} = \mathcal{T}_{ext} \cup \mathcal{T}_{think}\), where \(\mathcal{T}_{ext}\) denotes external retrieval tools and \(\mathcal{T}_{think}\) represents internal reasoning tools. Let \(\mathcal{H}\) denote the current interaction history.
External Tools (\(\mathcal{T}_{ext}\)) These tools interface with the academic database. Notably, to simulate realistic constraints, only the search tool returns full details, while citation tools provide broad, shallow context.
\(\textit{Search}(q) \rightarrow \mathcal{D}_{meta}\): Queries the database with keywords \(q\). It returns a set of papers \(\mathcal{D}_{meta}\) containing comprehensive metadata (e.g., abstract, citation count, publication year), serving as the primary source for detailed information acquisition.
\(\textit{Get\_References}(d_{id}) \rightarrow \mathcal{L}_{titles}\): Retrieves the bibliography of a target paper \(d_{id}\). It returns a list of titles only, allowing the agent to quickly scan the foundational roots of a work without overloading the context.
\(\textit{Get\_Cited}(d_{id}) \rightarrow \mathcal{L}_{titles}\): Identifies papers that have cited \(d_{id}\). Similarly, it returns a list of titles only, enabling the agent to efficiently map the downstream evolution and future trends related to the target paper.
Thinking Tools (\(\mathcal{T}_{think}\)) These tools model latent cognitive steps, mapping the context \(\mathcal{H}\) to explicit reasoning outputs \(o\).
\(\textit{Analyse\_Gap}(\mathcal{H}) \rightarrow o_{gap}\): Synthesizes the retrieved information in \(\mathcal{H}\) to identify logical inconsistencies or underexplored intersections, explicitly outputting a "research void" \(o_{gap}\).
\(\textit{Ideation}(\mathcal{H}, o_{gap}) \rightarrow o_{idea}\): The core generative action. Based on the identified gap \(o_{gap}\), it proposes a novel scientific idea \(o_{idea}\), detailing the innovation and expected advantages.
\(\textit{Reflection}(\mathcal{H}, o_{idea}) \rightarrow o_{eval}\): A self-correction mechanism that critically evaluates the quality of generated idea \(o_{idea}\), outputting a critique \(o_{eval}\) to trigger refinement if necessary.
To systematically synthesize agentic trajectories, we design a hierarchical multi-agent system operating on the defined tool space \(\mathcal{T}\). The process initiates by selecting a scientific paper, termed the "Anchor Paper," and extracting its bibliography to serve as the system input. The system then decomposes the ideation process into strategic planning and tactical execution, formalized as follows:
Planner (\(A_{plan}\)): Acts as the architect. Given the initial context \(\mathcal{H}_0\) (derived from the anchor paper’s references), the planner generates a high-level research roadmap \(P\) to structure the exploration: \[P = A_{plan}(\mathcal{H}_0)\]
Controller (\(A_{ctrl}\)): Acts as the executor. At each time step \(t\), guided by the roadmap \(P\), the controller processes the current interaction history \(\mathcal{H}_t\) to generate a reasoning thought \(Th_t\) and a subsequent action \(a_t\): \[(Th_t, a_t) = A_{ctrl}(\mathcal{H}_t, P, I_{ref})\] where \(a_t \in \mathcal{T}\) denotes the specific tool invoked to acquire new information or perform reasoning.
Private Thought (\(th_{priv}^{(t)}\)): Represents the Oracle View. It explicitly utilizes \(I_{ref}\) to perform a gap analysis between the current state and the target goal. This stream calculates the optimal tool \(a_t\) required to bridge the gap, effectively collapsing the search space by providing directional foresight.
Public Thought (\(th_{pub}^{(t)}\)): Represents the Researcher View. It rationalizes the decision \(a_t\) using only the currently available history \(\mathcal{H}_t\), intentionally masking the existence of \(I_{ref}\). This ensures the resulting reasoning trace mimics a natural, autonomous exploration process suitable for training.
However, utilizing this system directly for data synthesis suffers from severe inefficiency, as shown in Figure 2. A naive approach relies on rejection sampling as a quality filter, where a generated trajectory \(\tau\) is retained only if its final idea \(o_{idea}\) matches the anchor paper’s core idea. In the vast, open-ended search space of scientific ideation, an unguided agent rarely converges spontaneously on a specific target, resulting in a prohibitively high rejection rate. To address this, we propose an Oracle-Guided Strategy by injecting the anchor paper’s core idea, denoted as the Reference Idea (\(I_{ref}\)), into the inference process. Specifically, we implement a Dual-Thought Mechanism where the controller simultaneously generates two distinct cognitive streams. Formally, the policy at step \(t\) is defined as: \[(th_{priv}^{(t)}, th_{pub}^{(t)}, a_t) = A_{ctrl}(\mathcal{H}_t, P, I_{ref})\] The two thought components function as follows:
The synthesis process concludes when the agent invokes the \(\textit{Reflection}\) tool. The system evaluates the semantic alignment between the generated idea \(o_{idea}\) and \(I_{ref}\). Only trajectories where the generated idea successfully recovers the reference idea are preserved for the subsequent training phase.
To transform the diverse interaction traces generated by our multi-agent system into a format suitable for LLM training, we employ a structured linearization strategy. The input to the model consists of a system prompt defining the tool space \(\mathcal{T}\) and the user query containing the references of the anchor paper. Crucially, to ensure the trained agent learns autonomous exploration rather than "cheating," we exclusively retain the Public Thought (\(th_{pub}\)) from the controller’s dual-stream output as the primary reasoning chain, discarding the Private Thought (\(th_{priv}\)) and the Oracle’s guidance. The training sequence is rigorously organized using special tokens: external tool queries are encapsulated as <Tool_Name>Query</Tool_Name>, environmental observations are wrapped in <Result>Output</Result>, and internal cognitive actions are formatted as <Tool_Name>Content</Tool_Name>, culminating in the final output marked by <Answer>Final Idea</Answer>. The structure of the trajectory is shown in the Figure 3.
None
Figure 3: The structure of an agentic trajectory training data..
For model training, we utilize a Supervised Fine-Tuning (SFT) approach. Following [13], [32], [33], we mask tool execution results during loss calculation to ensure training performance and robustness. This design prevents the model from memorizing deterministic environmental feedback, forcing it to focus solely on reasoning and decision-making. The optimization objective is defined as:
\[\mathcal{L}(\theta) = - \frac{1}{\sum_{t=1}^{|X|} M_t} \sum_{t=1}^{|X|} M_t \cdot \log P_\theta (x_t \mid x_{<t})\]
where \(X\) represents the complete linearized token sequence, and \(x_t\) denotes the \(t\)-th token. \(x_{<t}\) represents the context preceding \(x_t\), and \(P_\theta\) is the conditional probability distribution parameterized by the model weights \(\theta\). The binary mask \(M_t \in \{0, 1\}\) serves as the indicator function: \(M_t=1\) if \(x_t\) belongs to the agent’s generated actions (thoughts or tool calls), and \(M_t=0\) if \(x_t\) belongs to system instructions or environmental feedback (tokens within <Result>...</Result>). This ensures gradients are back-propagated exclusively through the agent’s autonomous decisions.
Baselines. To comprehensively evaluate the performance of our proposed framework, we compare Agentic-Ideation against four representative workflow-based ideation systems and the foundation model itself.
ResearchAgent [25]: An iterative framework that augments ideation using a scientific knowledge store. It refines ideas through simulated peer reviews generated by "ReviewingAgents."
SciPIP [26]: A dual-path mechanism that integrates retrieval-based knowledge extraction with generative brainstorming to balance the novelty and feasibility of proposed ideas.
SciMON [27]: A system that explicitly optimizes for novelty. It iteratively retrieves "inspirations" from past literature and refines generated ideas until they sufficiently diverge from retrieved prior works.
VirSci [28]: A multi-agent collaboration framework ("Many Heads Are Better Than One") that simulates a team of virtual scientists to collaboratively propose and evaluate ideas through structured discussion.
Qwen3-8B [34]: The backbone model used in our method. We evaluate its zero-shot performance using standard prompting to quantify the specific gains achieved by our agentic fine-tuning.
| Method | NLP | CV | Others | Overall | ||||||||||||
| Nov. | Sig. | Fea. | Overall | Nov. | Sig. | Fea. | Overall | Nov. | Sig. | Fea. | Overall | Nov. | Sig. | Fea. | Overall | |
| ResearchAgent | 5.67 | 7.13 | 5.64 | 6.01 | 6.02 | 6.84 | 5.61 | 5.94 | 6.05 | 6.86 | 5.54 | 5.86 | 5.91 | 6.94 | 5.60 | 5.94 |
| SciPIP | 5.82 | 6.92 | 5.71 | 5.97 | 6.16 | 7.03 | 5.54 | 6.02 | 6.18 | 6.94 | 5.63 | 5.96 | 6.05 | 6.96 | 5.63 | 5.88 |
| SciMON | 5.72 | 7.05 | 5.54 | 5.87 | 6.09 | 6.93 | 5.62 | 5.99 | 6.28 | 7.02 | 5.59 | 6.03 | 6.03 | 7.00 | 5.58 | 5.96 |
| VirSci | 5.71 | 6.89 | 5.67 | 5.93 | 5.93 | 6.91 | 5.50 | 5.94 | 6.22 | 6.86 | 5.38 | 6.01 | 5.95 | 6.89 | 5.52 | 5.81 |
| Qwen-3-8B | 5.62 | 7.08 | 5.59 | 5.90 | 6.07 | 6.89 | 5.46 | 5.85 | 6.01 | 6.91 | 5.24 | 6.10 | 5.90 | 6.96 | 5.43 | 5.90 |
| Agentic-Ideation | 6.56\(^{*}\) | 7.88\(^{*}\) | 6.21\(^{*}\) | 6.64\(^{*}\) | 6.74\(^{*}\) | 7.65\(^{*}\) | 6.13\(^{*}\) | 6.69\(^{*}\) | 6.92\(^{*}\) | 7.82\(^{*}\) | 6.02\(^{*}\) | 6.69\(^{*}\) | 6.74\(^{*}\) | 7.78\(^{*}\) | 6.12\(^{*}\) | 6.67\(^{*}\) |
| Improvement\(\uparrow\) | 12.71% | 10.52% | 8.76% | 10.48% | 9.42% | 8.82% | 9.07% | 11.13% | 10.19% | 11.40% | 6.93% | 9.67% | 11.40% | 11.14% | 8.70% | 11.91% |
Dataset. We construct a high-quality dataset derived from accepted papers at three top-tier machine learning conferences: ICLR 2025, ICML 2025, and NeurIPS 2025. These papers serve as "Anchor Papers." To ensure data integrity, we filter out papers where the abstract or bibliography is inaccessible. To facilitate fine-grained evaluation, we employ GPT-5-mini to classify these papers into three distinct domains: Natural Language Processing (NLP), Computer Vision (CV), and Others.
For the test set, we focus on the most recently published conference, NeurIPS 2025, to assess the model’s ability to generate cutting-edge ideas. Specifically, we randomly sample 100 papers from each category (NLP, CV, Others), creating a balanced evaluation benchmark of 300 papers. For each anchor paper in both training and testing sets, we randomly select 10 references from its bibliography. These references serve as the sole input context, challenging the models to generate high-quality scientific ideas based strictly on this foundational knowledge.
Evaluation Metrics. Following established protocols in automated scientific discovery, we employ four distinct metrics to evaluate the generated ideas. These metrics are scored on a Likert scale (e.g., 1-10). More details can be found in the Appendix 6.1.
Novelty: Measures the degree of innovation and distinctiveness of the idea compared to existing literature.
Significance: Assesses the potential impact and scientific value of the proposed idea to the research community.
Feasibility: Evaluates the technical plausibility and implementation practicality of the proposed method.
Overall: A holistic score reflecting the general quality and completeness of the scientific idea.
Implementation Details. During the data synthesis phase, to ensure the highest quality of "Oracle" guidance, we utilize the powerful Qwen3-235B-A22B-Instruct-2507 [34] as the underlying LLM for all agents (Planner, Controller, and Tools) within the oracle-guided multi-agent system. For the Agentic training phase, we employ Qwen3-8B as the backbone for the target agentic LLM, which is fine-tuned on a dataset comprising 4,646 synthesized trajectories. Please refer to Appendix 6.2 for further implementation details.
To ensure a rigorous comparison, all baseline methods (ResearchAgent, SciPIP, SciMON, VirSci) are implemented using GPT-4o as the underlying engine, representing a strong closed-source benchmark.
Given the complexity of scientific ideation, we adopt a "Panel of LLM Judges" approach to mitigate single-model bias. We employ four state-of-the-art models as evaluators: GPT-5.2, Gemini-3-Pro-Preview, Claude-Sonnet-4.5, and Qwen3-Max. The reported scores are the averaged results across these four judges.
Table 1 presents the comprehensive evaluation results. Agentic-Ideation achieves state-of-the-art performance, consistently outperforming all baselines. Specifically, our method achieves an Overall score of 6.67, surpassing the best-performing baseline by 11.91%. We observe significant gains across Novelty (+11.40%), Significance (+11.14%), and Feasibility (+8.70%), demonstrating the robustness of our approach across NLP, CV, and Other domains.
Comparison with Workflow-based Baselines. Compared to workflow-based systems (e.g., ResearchAgent, SciPIP), Agentic-Ideation exhibits superior adaptability. While baselines are constrained by rigid, pre-defined execution loops, our agentic framework empowers the Controller to dynamically navigate the research space—backtracking or reflecting as needed. This autonomy allows the model to escape local optima that limit static workflows, resulting in ideas with significantly higher Novelty and Significance.
Comparison with Backbone Model. Comparison with the Qwen3-8B backbone highlights the critical role of active tool use. While the backbone relies solely on parametric knowledge, often leading to generic or unverified proposals, Agentic-Ideation leverages the Agentic Tool Space to ground reasoning in real-world literature. By verifying assumptions against retrieved evidence (e.g., via Get_References), our agent significantly boosts Feasibility (e.g., +12.71% in NLP), ensuring generated ideas are not just creative but technically sound.
Table 2 highlights the critical efficiency gap. Rejection Sampling proves prohibitively inefficient, averaging 12 attempts to harvest a single valid sample. This stems from the vast, open-ended nature of scientific ideation, where unguided agents rarely converge spontaneously on the target idea, leading to massive computational waste. In contrast, Agentic-Ideation achieves optimal efficiency, requiring only 1 rollout per sample. By leveraging our Oracle-Guided Strategy, the system uses "foresight" to ensure the necessary logic and tool invocations are generated in a single pass. Consequently, every generated trajectory is valid, delivering a >10\(\times\) improvement in synthesis efficiency compared to rejection sampling, effectively making large-scale agentic data synthesis computationally feasible.
| Method | NLP | CV | Others | Overall |
|---|---|---|---|---|
| Reject Sampling | 14 | 9 | 13 | 12 |
| Agentic-Ideation | 1 | 1 | 1 | 1 |
Table 3 investigates the individual contribution of each tool within our framework. The results unequivocally demonstrate that removing any single tool leads to a consistent degradation in performance across all metrics. This universal decline confirms the holistic nature of our Agentic Tool Space, where both external information acquisition (e.g., retrieval tools) and internal cognitive reasoning (e.g., reflection and gap analysis) are indispensable components. The synergy between these tools ensures that the agent can effectively bridge the gap between raw data and high-level scientific conceptualization.
| Tools | Nov. | Sig. | Fea. | Overall |
|---|---|---|---|---|
| w/o Search | 6.03 | 7.21 | 6.04 | 5.99 |
| w/o Get_References | 6.34 | 7.29 | 5.98 | 6.32 |
| w/o Get_Cited | 6.57 | 7.66 | 6.07 | 6.38 |
| w/o Analyse_Gap | 5.86 | 7.26 | 5.99 | 6.07 |
| w/o Reflection | 6.49 | 7.34 | 6.10 | 6.43 |
| Full | 6.74 | 7.78 | 6.12 | 6.67 |
A closer inspection reveals that the Search and Analyse_Gap tools are particularly critical. The exclusion of Search results in the lowest Overall score (5.99), indicating that without the ability to actively query external databases for broad information, the agent becomes confined to the limited context of initial references, severely hampering its ability to verify facts and expand its knowledge boundary. Similarly, removing Analyse_Gap causes the most significant drop in the Novelty metric. This highlights the tool’s pivotal role in the cognitive process; without explicitly synthesizing existing literature to pinpoint a "research void," the agent tends to generate ideas that are technically sound but incrementally trivial, failing to propose the distinct innovations that define high-quality research.
To further validate the practical value and reliability of our method, we conducted a rigorous human evaluation. We adopted a double-blind protocol to eliminate potential bias. Expert evaluators were presented with anonymized ideas generated by different models in a randomized order and were asked to score them based on four criteria: Novelty, Significance, Feasibility, and Overall quality.
| Methods | Nov. | Sig. | Fea. | Overall |
|---|---|---|---|---|
| ResearchAgent | 5.83 | 6.41 | 5.41 | 5.57 |
| SciPIP | 6.02 | 6.49 | 5.57 | 5.87 |
| Scimon | 6.07 | 6.68 | 5.55 | 5.76 |
| Virsci | 5.82 | 6.38 | 5.43 | 5.62 |
| Qwen3-8B | 5.96 | 6.57 | 5.42 | 5.55 |
| Agentic-Ideation | 6.71 | 7.50 | 6.05 | 6.45 |
| Improvement\(\uparrow\) | 10.54% | 12.28% | 8.62% | 9.88% |
None
Figure 4: A visualized research trajectory generated by Agentic-Ideation. The agent actively explores the literature, identifies a gap in error correction, and crucially, utilizes the Reflection tool to reject a redundant initial idea, leading to a more novel final proposal..
As shown in Table 4, the human evaluation results align consistently with the automated metrics reported in the main experiment. Agentic-Ideation achieves superior performance across all dimensions, securing the highest Overall score of 6.45, which surpasses the strongest baseline (SciPIP) by 9.88%. Notably, the most substantial improvement is observed in Significance (+12.28%), suggesting that human experts particularly value the logical depth and theoretical value derived from our agent’s grounded reasoning process. Furthermore, the +8.62% gain in Feasibility confirms that the active usage of retrieval tools effectively reduces hallucinations, producing ideas that are not only innovative but also practically viable.
To intuitively demonstrate the working mechanism of Agentic-Ideation, we present a representative research trajectory in Figure 4. In this case, the agent explores the domain of "Diffusion Models" to address the problem of error compounding.
The trajectory illustrated in Figure 4 offers a compelling validation of Agentic-Ideation’s capabilities. Unlike standard LLMs that often generate generic or hallucinated limitations, our agent leverages the <Analyze_Gap> tool to conduct a structural critique of diffusion models, identifying the specific theoretical void of inference-time correction rather than superficial issues. Throughout the process, the agent demonstrates strategic information seeking by actively linking distinct sub-fields—tracing "Self-Guidance" via <Get_Cited> and deep-diving into "Corrective Diffusion" via <Search>—to synthesize a hybrid hypothesis that bridges discrete text correction with continuous image generation. Most crucially, the <Reflection> step acts as a rigorous quality filter; when the agent detects that its initial "Latent-Space Remasking" proposal lacks sufficient novelty compared to prior work like RePaint, it autonomously rejects the draft and iterates. This self-correction loop ensures that the final output, "Adaptive Error-Aware Learning," is not only scientifically grounded but also distinctly innovative, demonstrating that our Agentic Tool Space serves as both a generative engine and an effective quality gatekeeper.
In this work, we address the rigidity of workflow-based approaches and the inefficiency of agentic data synthesis for scientific ideation. We introduce Agentic-Ideation, an Oracle-Guided framework that efficiently navigates the vast search space, bypassing the computational bottlenecks of naive exploration. By training on these synthesized trajectories, our model acquires robust capabilities for grounded reasoning and autonomous exploration. Empirical results confirm that Agentic-Ideation establishes state-of-the-art performance while boosting synthesis efficiency by over 10\(\times\).
This work significantly advances the field of automated scientific discovery by addressing the critical bottleneck of data scarcity. By enabling the efficient synthesis of high-quality agentic trajectories, our framework paves the way for developing autonomous AI scientists capable of grounded reasoning and reliable innovation. This advancement holds the potential to accelerate the pace of research across diverse scientific disciplines, democratizing access to high-level ideation capabilities and fostering human-AI collaboration in solving complex scientific challenges.
To ensure a rigorous and consistent assessment of the generated research ideas, we employ a standardized scoring rubric ranging from 1 to 10 across four key dimensions: Novelty, Significance, Feasibility, and Overall Score. Both the automated LLM judges and human evaluators adhere to the detailed criteria outlined below.
Novelty (1-10) Evaluates the innovation of the proposed method.
9-10 (Groundbreaking): Proposes a completely new paradigm, mathematical formulation, or solves a long-standing open problem in a unique way.
7-8 (Significant): Introduces a clever variation or a non-obvious combination of existing techniques that offers substantial new insights.
5-6 (Incremental): Represents a standard application of known methods to a new domain or offers only minor improvements.
1-4 (Trivial): Lacks originality; constitutes derivative work or merely repeats a known solution.
Significance (1-10) Evaluates the potential impact and importance of the addressed problem.
9-10 (High Impact): Addresses a critical bottleneck in the field; results would likely influence future research directions.
7-8 (Important): Solves a meaningful problem within a specific subfield; highly relevant to the community.
5-6 (Moderate): The problem is valid but niche or of limited interest to the broader community.
1-4 (Low): The problem is unimportant, contrived, or already well-solved.
Feasibility (1-10) Evaluates the technical soundness and likelihood of success.
9-10 (Very High): The methodology is rigorous, assumptions are clearly valid, and the proposed steps are logical and fully implementable.
7-8 (High): The approach is sound, though some minor implementation details might need further clarification.
5-6 (Uncertain): There are theoretical gaps or risky assumptions that might lead to failure.
1-4 (Low): Fundamentally flawed; the method contradicts established principles or is impossible to implement.
Overall Score (1-10) A holistic assessment of the idea’s quality.
9-10 (Excellent): An outstanding idea with clear potential to become a seminal work. Extremely promising.
7-8 (Good): A strong, solid idea that is well-conceived and worth pursuing.
5-6 (Fair): Has some merit but contains significant flaws, gaps, or lack of depth that need to be addressed.
1-4 (Poor): Critically flawed, lacks substance, or is not ready for serious consideration.
All experiments were conducted on a high-performance computing cluster. Table 5 summarizes the detailed computing resources, data statistics, and training hyperparameters used for fine-tuning the Agentic LLM.
| Configuration | Value |
|---|---|
| Compute & Data | |
| Computing Infrastructure | 4 \(\times\) NVIDIA A100 (80GB) |
| Backbone Model | Qwen3-8B |
| Tuning Strategy | Full Fine-Tuning |
| Training Data Size | 4,646 Trajectories |
| Total Training Time | \(\sim\) 10.5 Hours |
| Training Parameters | |
| Number of Epochs | 5 |
| Initial Learning Rate | 5e-5 |
| LR Scheduler Type | Cosine |
Despite the promising results, we acknowledge two primary limitations. First, our experiments rely on the Qwen3-8B backbone; while efficient, its reasoning depth and world knowledge are naturally constrained compared to larger-scale foundation models, suggesting that scaling up could further enhance idea complexity. Second, the current agentic tool space is predominantly retrieval-oriented, focusing on information acquisition rather than executable actions. Future work should integrate "active" tools, such as Python code execution or domain-specific simulators, to allow the agent to perform preliminary validation of its proposed ideas.