Yuyao Zhang
Author directoryOther people with similar names: Yuyao Zhang
Unverified author pages with similar names: Yuyao Zhang
2026
Web Sitemap Knowledge Can Enhance Autonomous Browsing
Yuyao Zhang | Hongyu Lu | Jiajie Jin | Hongjin Qian | Shiyu Li | Zhao Yang | Yutao Zhu | Ji-Rong Wen | Zhicheng Dou
Findings of the Association for Computational Linguistics: ACL 2026
Yuyao Zhang | Hongyu Lu | Jiajie Jin | Hongjin Qian | Shiyu Li | Zhao Yang | Yutao Zhu | Ji-Rong Wen | Zhicheng Dou
Findings of the Association for Computational Linguistics: ACL 2026
Recent advances in large language models (LLMs) have enabled web agents to perform interactive tasks on real-world websites. However, existing agents still suffer from limited robustness, efficiency, and task success, largely due to their lack of structural understanding of websites and the absence of browsing priors in pre-trained models. To address these challenges, this paper proposes the Web Agent Sitemap Protocol (WASP), an agent-oriented sitemap that integrate structured website knowledge into web agents. WASP adopts a dual-granularity design, providing global site-level structure and local page-level semantic and interaction guidance. We also introduce a framework LightASM for constructing such sitemaps by identifying core pages and generating concise semantic summaries and block-level descriptions. Experiments on real-world browsing benchmarks demonstrate that WASP substantially improves the robustness, efficiency, and effectiveness of LLM-based web agents without extra training.
FinSight: Towards Real-World Financial Deep Research
Jiajie Jin | Yuyao Zhang | Yimeng Xu | Hongjin Qian | Yutao Zhu | Zhicheng Dou
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
Jiajie Jin | Yuyao Zhang | Yimeng Xu | Hongjin Qian | Yutao Zhu | Zhicheng Dou
Proceedings of the 64th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
Professional financial reports serve as the cornerstone of investment decisions, demanding deep reasoning and multimodal synthesis. While recent deep research systems excel in open-domain search, they struggle with financial reporting, specifically in handling financial data, ensuring analytical depth, and integrating professional visualizations. To address this, we introduce FinSight , the first multi-agent framework for automate end-to-end professional, multimodal financial report. At its core, we propose the Code Agent with Variable Memory architecture, which unifies data, tools, and agents into a programmable variable space, enabling flexible data manipulation and reasoning through executable code. To guarantee report quality, FinSight incorporates a Two-Stage Writing Framework with Generative Retrieval. This mechanism first distills raw data into structured Chain-of-Analysis segments, and then progressively synthesizes them into a coherent, citation-aware, and multimodal narrative. Additionally, an Iterative Vision-Enhanced Mechanism leverages visual feedback to refine code-generated charts to expert standards. Experiments on company and industry-level tasks demonstrate that FinSight significantly outperforms leading deep research systems in factual accuracy, analytical depth, and presentation quality, demonstrating a clear path toward generating professional financial reports. Our code is available at https://anonymous.4open.science/r/FinSight-5841.
2025
Neuro-Symbolic Query Compiler
Yuyao Zhang | Zhicheng Dou | Xiaoxi Li | Jiajie Jin | Yongkang Wu | Zhonghua Li | Ye Qi | Ji-Rong Wen
Findings of the Association for Computational Linguistics: ACL 2025
Yuyao Zhang | Zhicheng Dou | Xiaoxi Li | Jiajie Jin | Yongkang Wu | Zhonghua Li | Ye Qi | Ji-Rong Wen
Findings of the Association for Computational Linguistics: ACL 2025
Precise recognition of search intent in Retrieval-Augmented Generation (RAG) systems remains a challenging goal, especially under resource constraints and for complex queries with nested structures and dependencies. This paper presents QCompiler, a neuro-symbolic framework inspired by linguistic grammar rules and compiler design, to bridge this gap. It theoretically presents a minimal yet sufficient Backus-Naur Form (BNF) grammar G[q] to formalize complex queries. Unlike previous methods, this grammar maintains completeness while minimizing redundancy. Based on this, QCompiler includes a query expression translator, a Lexical syntax parser, and a Recursive Descent Processor to compile queries into Abstract Syntax Trees (ASTs) for execution. The atomicity of the sub-queries in the leaf nodes ensures more precise document retrieval and response generation, significantly improving the RAG system’s ability to address complex queries.
Search-o1: Agentic Search-Enhanced Large Reasoning Models
Xiaoxi Li | Guanting Dong | Jiajie Jin | Yuyao Zhang | Yujia Zhou | Yutao Zhu | Peitian Zhang | Zhicheng Dou
Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing
Xiaoxi Li | Guanting Dong | Jiajie Jin | Yuyao Zhang | Yujia Zhou | Yutao Zhu | Peitian Zhang | Zhicheng Dou
Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing
Large reasoning models (LRMs) like OpenAI-o1 have demonstrated impressive long stepwise reasoning capabilities through large-scale reinforcement learning. However, their extended reasoning processes often suffer from knowledge insufficiency, leading to frequent uncertainties and potential errors. To address this limitation, we introduce Search-o1, a framework that enhances LRMs with an agentic retrieval-augmented generation (RAG) mechanism and a Reason-in-Documents module for refining retrieved documents. Search-o1 integrates an agentic search workflow into the reasoning process, enabling dynamic retrieval of external knowledge when LRMs encounter uncertain knowledge points. Additionally, due to the verbose nature of retrieved documents, we design a separate Reason-in-Documents module to deeply analyze the retrieved information before injecting it into the reasoning chain, minimizing noise and preserving coherent reasoning flow. Extensive experiments on complex reasoning tasks in science, mathematics, and coding, as well as six open-domain QA benchmarks, demonstrate the strong performance of Search-o1. This approach enhances the trustworthiness of LRMs in complex reasoning tasks, paving the way for advanced deep research systems. The code is available at https://github.com/RUC-NLPIR/Search-o1.
Hierarchical Document Refinement for Long-context Retrieval-augmented Generation
Jiajie Jin | Xiaoxi Li | Guanting Dong | Yuyao Zhang | Yutao Zhu | Yongkang Wu | Zhonghua Li | Ye Qi | Zhicheng Dou
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
Jiajie Jin | Xiaoxi Li | Guanting Dong | Yuyao Zhang | Yutao Zhu | Yongkang Wu | Zhonghua Li | Ye Qi | Zhicheng Dou
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)
Real-world RAG applications often encounter long-context input scenarios, where redundant information and noise results in higher inference costs and reduced performance. To address these challenges, we propose LongRefiner, an efficient plug-and-play refiner that leverages the inherent structural characteristics of long documents. LongRefiner employs dual-level query analysis, hierarchical document structuring, and adaptive refinement through multi-task learning on a single foundation model. Experiments on seven QA datasets demonstrate that LongRefiner achieves competitive performance in various scenarios while using 10x fewer computational costs and latency compared to the best baseline. Further analysis validates that LongRefiner is scalable, efficient, and effective, providing practical insights for real-world long-text RAG applications. Our code is available at https://github.com/ignorejjj/LongRefiner.