HyperAIHyperAI

Command Palette

Search for a command to run...

MiroThinker-1.7 및 H1: 검증을 통한 고강도 연구 Agent 의 방향성

초록

저희는 복잡한 장기 계획(reasoning) 과제를 위해 설계된 새로운 연구 에이전트 MiroThinker-1.7 을 소개합니다. 이를 기반으로 저희는 보다 신뢰할 수 있는 다단계 문제 해결을 위해 중대형(reasoning) 능력을 확장한 MiroThinker-H1 을 추가로 제안합니다. 특히 MiroThinker-1.7 은 구조화된 계획, 문맥 기반 추론, 그리고 도구 상호작용을 중점적으로 다루는 에이전트형 중간 학습(mid-training) 단계를 통해 각 상호작용 단계의 신뢰성을 향상시킵니다. 이를 통해 복잡한 과제 전반에 걸쳐 보다 효과적인 다단계 상호작용과 지속적인 추론이 가능해집니다. MiroThinker-H1 은 로컬 및 글로벌 수준에서 검증(verfication) 을 추론 과정에 직접 통합합니다. 추론(interference) 중에도 중간 추론 결정을 평가하고 정제할 수 있으며, 전체 추론 경로(trajecory) 를 감사(audit) 하여 최종 답변이 일관된 증거 체인에 의해 뒷받침되도록 보장합니다. 오픈 웹 연구, 과학적 추론, 금융 분석을 아우르는 벤치마크(benchmark) 에서 MiroThinker-H1 은 심층 연구(deep research) 과제에서 최첨단(state-of-the-art) 성능을 달성하면서도 전문 분야에서도 강력한 결과를 유지했습니다. 또한 저희는 MiroThinker-1.7 과 MiroThinker-1.7-mini 를 오픈소스 모델로 공개하여, 경쟁력 있는 연구 에이전트 기능을 제공함과 동시에 효율성을 크게 개선했습니다.

One-sentence Summary

The MiroMind Team introduces MiroThinker-1.7 and MiroThinker-H1, research agents that prioritize effective interaction scaling over trajectory length through agentic mid-training and a novel verification-centric reasoning mode. These models achieve state-of-the-art performance in complex deep research, scientific, and financial analysis by auditing intermediate steps and global evidence chains to ensure reliable long-horizon problem solving.

Key Contributions

  • The paper introduces MiroThinker-1.7, a research agent that improves step-level reliability through an agentic mid-training stage emphasizing structured planning, contextual reasoning, and tool interaction. This approach enables more effective multi-step problem solving and reduces the number of reasoning turns required for complex tasks.
  • A heavy-duty reasoning mode called MiroThinker-H1 is presented, which integrates verification mechanisms at both local and global levels to evaluate intermediate decisions and audit the overall reasoning trajectory. This design allows the system to refine actions during inference and ensure final answers are supported by coherent chains of evidence.
  • The work releases MiroThinker-1.7 and MiroThinker-1.7-mini as open-source models that achieve state-of-the-art performance on deep research benchmarks while maintaining high efficiency. Experimental results across open-web research, scientific reasoning, and financial analysis demonstrate that these models outperform existing open-source and commercial research agents.

Introduction

Real-world tasks like scientific analysis and financial research demand AI systems that can execute long chains of reasoning while gathering and verifying external information. Current agentic frameworks often fail because simply extending the number of interaction steps tends to accumulate errors and degrade solution quality rather than improve reliability. The authors address this by introducing MiroThinker-1.7 and MiroThinker-H1, which prioritize effective interaction scaling through a specialized mid-training stage that strengthens atomic planning and tool-use skills. They further enhance reliability with a heavy-duty verification mode that audits reasoning steps locally and globally to ensure final answers are supported by coherent evidence chains.

Dataset

  • The authors construct the dataset using a corpus-based pipeline that draws from highly interlinked sources such as Wikipedia and OpenAlex while preserving hyperlink topology.
  • For each seed document, the process samples a connected subgraph via internal hyperlinks, extracts cross-document factual statements, and prompts a strong large language model to synthesize multi-hop question-answer pairs.
  • This approach generates data with high throughput and broad coverage, utilizing prompt-driven diversification and obfuscation to induce varied question forms and reasoning patterns.
  • The dataset lacks explicit difficulty control or structural enforcement of reasoning depth, and information leakage is not systematically managed during the generation process.

Method

The authors design MiroThinker-1.7 around an iterative agent-environment interaction loop. The framework extends the ReAct paradigm with a dual-loop structure consisting of an outer episode loop and an inner step loop. Within an episode eee, the agent accumulates a trajectory log Ht(e)H_t^{(e)}Ht(e) containing thoughts, actions, and observations. To manage context within a fixed token budget, a context operator Φt\Phi_tΦt applies sliding-window filtering and result truncation. Specifically, the agent retains the KKK most recent steps while masking older observations, ensuring the effective context Ct(e)C_t^{(e)}Ct(e) remains manageable. If an episode exhausts its turn budget without a valid answer, the system triggers an episode restart, discarding prior state to avoid bias.

The framework integrates a modular tool interface to connect the agent to the external world. As shown in the figure below: This interface encompasses Information Retrieval (search and scraping), Code Execution (sandboxed Python and shell commands), and File Transfer utilities. For the MiroThinker-H1 variant, the architecture incorporates a verification-centric reasoning scheme featuring Local and Global Verifiers to audit step-level and complete reasoning processes respectively.

To support training, the authors employ a dual-pipeline QA synthesis framework. The Corpus-based Pipeline focuses on topical breadth by sampling subgraphs from curated corpora to generate high-volume QA pairs. In parallel, the WebHop Pipeline constructs calibrated reasoning trees using web-augmented expansion and hierarchical verification. This pipeline ensures reasoning rigour by expanding root entities via live web search and applying adaptive leaf obfuscation to prevent answer leakage.

The data synthesis process is illustrated in the figure below: This approach allows the model to learn from both structured knowledge graphs and diverse, real-world web content.

The training process follows a four-stage pipeline designed to progressively enhance agentic capabilities. First, Mid-Training strengthens atomic agentic capabilities such as planning, reasoning, and tool use through a large corpus of agentic supervision. Second, Supervised Fine-Tuning allows the model to learn structured agentic interaction behaviors by replicating expert trajectories. Third, Preference Optimization aligns the model's decisions with task objectives and behavior preferences. Finally, Reinforcement Learning promotes creative exploration and improves generalization in real-world environments using Group Relative Policy Optimization (GRPO).

The progression of these training stages is depicted in the figure below: During Reinforcement Learning, the authors implement a targeted entropy control mechanism to maintain policy stability and prevent premature entropy collapse during the optimization process.

Experiment

  • Agentic benchmarks validate that MiroThinker achieves state-of-the-art performance in multi-step web browsing, information retrieval, and reasoning, surpassing leading commercial models on tasks like Humanity's Last Exam and GAIA.
  • Professional-domain evaluations confirm robust capabilities in specialized fields, with the model outperforming frontier systems in scientific reasoning, financial analysis, and medical synthesis.
  • Long-form report assessments demonstrate superior report quality and factual grounding, proving the model's effectiveness in synthesizing complex information for deep research queries.
  • Interaction scaling experiments reveal that improving the quality of individual reasoning steps yields better results than simply increasing the number of interaction turns, leading to higher performance with fewer steps.
  • Verification-centric ablation studies show that local and global verifiers significantly enhance performance on hard subsets and search-intensive tasks by correcting erroneous reasoning paths and reducing redundant interactions.

AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp