Yuxin Wang
Author directoryOther people with similar names: Yuxin Wang, Yuxin Wang, Yuxin Wang (Harbin)
Unverified author pages with similar names: Yuxin Wang
2026
ABC-Bench: Benchmarking Agentic Backend Coding in Real-World Development
Jie Yang | Honglin Guo | Li Ji | Jiazheng Zhou | Rui Zheng | Zhikai Lei | Shuo Zhang | Zhiheng Xi | Shichun Liu | Yuxin Wang | Bo Wang | Yining Zheng | Tao Gui | Xipeng Qiu
Findings of the Association for Computational Linguistics: ACL 2026
Jie Yang | Honglin Guo | Li Ji | Jiazheng Zhou | Rui Zheng | Zhikai Lei | Shuo Zhang | Zhiheng Xi | Shichun Liu | Yuxin Wang | Bo Wang | Yining Zheng | Tao Gui | Xipeng Qiu
Findings of the Association for Computational Linguistics: ACL 2026
The evolution of Large Language Models (LLMs) into autonomous agents has expanded the scope of AI coding from localized code generation to complex, repository-level, and execution-driven problem solving. However, current benchmarks predominantly evaluate code logic in static contexts, neglecting the dynamic, full-process requirements of real-world engineering, particularly in backend development which demands rigorous environment configuration and service deployment. To address this gap, we introduce ABC-Bench, a benchmark explicitly designed to evaluate agentic backend coding within a realistic, executable workflow. Using a scalable automated pipeline, we curated 224 practical tasks spanning 8 languages and 19 frameworks from open-source repositories. Distinct from previous evaluations, ABC-Bench require the agents to manage the entire development lifecycle from repository exploration to instantiating containerized services and pass the external end-to-end API tests. Our extensive evaluation reveals that even state-of-the-art models struggle to deliver reliable performance on these holistic tasks, highlighting a substantial disparity between current model capabilities and the demands of practical backend engineering.
2025
R3-RAG: Learning Step-by-Step Reasoning and Retrieval for LLMs via Reinforcement Learning
Yuan Li | Qi Luo | Xiaonan Li | Bufan Li | Qinyuan Cheng | Bo Wang | Yining Zheng | Yuxin Wang | Zhangyue Yin | Xipeng Qiu
Findings of the Association for Computational Linguistics: EMNLP 2025
Yuan Li | Qi Luo | Xiaonan Li | Bufan Li | Qinyuan Cheng | Bo Wang | Yining Zheng | Yuxin Wang | Zhangyue Yin | Xipeng Qiu
Findings of the Association for Computational Linguistics: EMNLP 2025
Retrieval-Augmented Generation (RAG) integrates external knowledge with Large Language Models (LLMs) to enhance factual correctness and mitigate hallucination. However, dense retrievers often become the bottleneck of RAG systems due to their limited parameters compared to LLMs and their inability to perform step-by-step reasoning. While prompt-based iterative RAG attempts to address these limitations, it is constrained by human-designed workflows.To address these limitations, we propose R3-RAG, which uses Reinforcement learning to make the LLM learn how to Reason and Retrieve step by step, thus retrieving comprehensive external knowledge and leading to correct answers. R3-RAG is divided into two stages. We first use cold start to make the model learn the manner of iteratively interleaving reasoning and retrieval. Then we use reinforcement learning to further harness its ability to better explore the external retrieval environment.Specifically, we propose two rewards for R3-RAG: 1) answer correctness for outcome reward, which judges whether the trajectory leads to a correct answer; 2) relevance-based document verification for process reward, encouraging the model to retrieve documents that are relevant to the user question, through which we can let the model learn how to iteratively reason and retrieve relevant documents to get the correct answer.Experimental results show that R3-RAG significantly outperforms baselines and can transfer well to different retrievers.
VehicleWorld: A Highly Integrated Multi-Device Environment for Intelligent Vehicle Interaction
Jie Yang | Jiajun Chen | Zhangyue Yin | Shuo Chen | Yuxin Wang | Yiran Guo | Yuan Li | Yining Zheng | Xuanjing Huang | Xipeng Qiu
Findings of the Association for Computational Linguistics: EMNLP 2025
Jie Yang | Jiajun Chen | Zhangyue Yin | Shuo Chen | Yuxin Wang | Yiran Guo | Yuan Li | Yining Zheng | Xuanjing Huang | Xipeng Qiu
Findings of the Association for Computational Linguistics: EMNLP 2025
Intelligent vehicle cockpits present unique challenges for API Agents, requiring coordination across tightly-coupled subsystems that exceed typical task environments’ complexity. Traditional Function Calling (FC) approaches operate statelessly, requiring multiple exploratory calls to build environmental awareness before execution, leading to inefficiency and limited error recovery. We introduce VehicleWorld, the first comprehensive environment for the automotive domain, featuring 30 modules, 250 APIs, and 680 properties with fully executable implementations that provide real-time state information during agent execution. This environment enables precise evaluation of vehicle agent behaviors across diverse, challenging scenarios. Through systematic analysis, we discovered that direct state prediction outperforms function calling for environmental control. Building on this insight, we propose State-based Function Call (SFC), a novel approach that maintains explicit system state awareness and implements direct state transitions to achieve target conditions. Experimental results demonstrate that SFC significantly outperforms traditional FC approaches, achieving superior execution accuracy and reduced latency. We have made all implementation code publicly available on GitHub.