工作日早上 7 点读 AI,周日早上 8 点读周报订阅邮件

METAL LAB

Qwen-UI-Agent Technical Report: Toward Next-Generation Real-World Centric Foundation GUI Agents

arXiv:2607.282272026-07-29

Qwen-UI-Agent是一个把真机屏幕点击和命令行操作结合起来完成多步任务的GUI智能体,而不只是在模拟器里表现好

Qwen-UI-Agent把手机、电脑、网页和深度搜索环境统一到一个GUI智能体里,能交替使用屏幕操作和命令行指令。它结合了超过100台真实手机组成的实机运行环境、大规模沙盒、针对超过100轮长轨迹的在线强化学习,以及能根据手机通知主动行动的外层框架。报告称其在真机移动端基准上取得最优结果,在电脑、浏览器和搜索任务上也与顶尖模型表现相当。

METAL LAB 解读图

Qwen-UI-Agent的四大组成部分

证据状态已报告实测结果

  1. 环境基础设施结合手机、电脑、网页、深度搜索的沙盒环境与100多台真实设备,用于数据采集和评测
  2. 数据飞轮智能体自行生成任务、诊断失败,并自动为下一轮训练设计数据
  3. 统一训练框架将监督微调与针对超过100轮长轨迹的在线强化学习结合起来训练模型
  4. 外层框架(harness)检测通知以主动发起服务,并在手机与电脑之间维持任务状态
这是 METAL LAB 制作的解读图,并非论文作者提供的原图。

他们做了什么

  1. 搭建了包含100多台真实安卓设备、支持150多个应用的真机移动环境,用于任务设计、数据采集、强化学习和真机评测
  2. 统一了动作空间,包含屏幕操作、基于bash的命令行指令、结构化API调用和请求用户确认的操作,并支持模型在一次决策中输出一组批量动作
  3. 将基于验证器的在线强化学习扩展到超过100步的长轨迹,同时并行运行约一万个模拟环境以加速训练
  4. 构建了AutoResearch式的数据飞轮,让智能体自己生成任务、诊断失败并规划下一轮训练数据,减少人工投入
  5. 构建了主动服务框架,能识别手机通知(例如航班取消)并主动提出可执行方案供用户确认,而不是等待明确指令
Figure 1: Qwen-UI-Agent demonstrates leading or competitive performance across diverse GUI settings.
Figure 1: Qwen-UI-Agent demonstrates leading or competitive performance across diverse GUI settings.
Table 1: Action Space in Qwen-UI-Agent.
ActionDefinition
GUI Actions
clickClicks at coordinates (x,y).
double_clickDouble-clicks at coordinates (x,y).
long_pressLong-presses at coordinates (x,y).
typeTypes the specified text content.
openOpens the specified app.
dragDrags from start coordinates (x1,y1) to end coordinates (x2,y2).
system_buttonPresses a system button, selected from back, home, menu, and enter.
waitWaits for a specified duration in seconds.
CLI Actions
cli_commandExecutes a bash command in the active CLI environment.
API Actions
api_callInvokes an API with specified arguments.
Interaction and Control Actions
ask_userInteract with the user to complete the task.
terminateEnds the task with a final answer and a status of success or failed.
Figure 2: An illustrative trajectory of Qwen-UI-Agent for proactive cross-platform task execution. The left panel summarizes the system capabilities underlying the trajectory, including cross-platform execution, a hybrid action space spanning GUI, CLI, and API operations, and environments ranging from large-scale sandboxes to real devices. The right panel illustrates a travel-recovery scenario triggered by a flight-cancellation notification. After identifying the affected tasks and commitments, the agent searches for alternative flights through an API, requests user approval before rebooking via a mobile GUI, updates the affected meeting schedule through desktop GUI and CLI actions, and sends the revised artifact to the relevant recipients.
Figure 2: An illustrative trajectory of Qwen-UI-Agent for proactive cross-platform task execution. The left panel summarizes the system capabilities underlying the trajectory, including cross-platform execution, a hybrid action space spanning GUI, CLI, and API operations, and environments ranging from large-scale sandboxes to real devices. The right panel illustrates a travel-recovery scenario triggered by a flight-cancellation notification. After identifying the affected tasks and commitments, the agent searches for alternative flights through an API, requests user approval before rebooking via a mobile GUI, updates the affected meeting schedule through desktop GUI and CLI actions, and sends the revised artifact to the relevant recipients.
Table 2: Performance comparison on the GUI-only subset of MobileWorld (Kong et al. 2026), consisting of 117 tasks. We include representative general-purpose VLMs and specialized GUI models. The best result is highlighted in bold, and the second-best result is underlined.
ModelAccess / SizeSuccess Rate (%)
General-purpose VLMs
Seed 2.1 Pro (ByteDance Seed 2026b)Closed-source73.2
GPT-5.6 Sol (OpenAI 2026b)Closed-source70.1
Claude Opus 4.8 (Anthropic 2026)Closed-source67.5
Seed 2.0 Pro (ByteDance Seed 2026a)Closed-source63.2
Qwen 3.7 Plus (Qwen Team 2026a)397B-A17B62.3
Gemini 3.1 Pro (Google 2026a)Closed-source58.1
Kimi K2.6 (Moonshot AI 2026)1T-A32B55.6
Specialized GUI Models
GUI-Owl-1.5-32B-Instruct (Xu et al. 2026)32B43.9
MAI-UI-235B-A22B (Zhou et al. 2025a)235B-A22B39.7
UI-Venus-1.5-30B-A3B (Gao et al. 2026)30B-A3B17.1
Ours
Qwen-UI-Agent27B82.1
Qwen-UI-Agent35B-A3B65.0
Figure 3: The environment infrastructure of Qwen-UI-Agent. (a) Scalable sandbox environments spanning mobile-use, computer-use, browser-use, and DeepSearch provide controllability and repeatable evaluation for data synthesis and training. (b) A sim-to-real bridge extends agents to real devices with real applications, networks, and account states, supporting user takeover for login, payment, permission, and confirmation. (c) A hybrid GUI+CLI action space interleaves graphical operations with direct command execution. (d) A unified interface standardizes the thinking–action–observation loop across heterogeneous environments.
Figure 3: The environment infrastructure of Qwen-UI-Agent. (a) Scalable sandbox environments spanning mobile-use, computer-use, browser-use, and DeepSearch provide controllability and repeatable evaluation for data synthesis and training. (b) A sim-to-real bridge extends agents to real devices with real applications, networks, and account states, supporting user takeover for login, payment, permission, and confirmation. (c) A hybrid GUI+CLI action space interleaves graphical operations with direct command execution. (d) A unified interface standardizes the thinking–action–observation loop across heterogeneous environments.
Table 3: Performance comparison on real-device mobile benchmarks. MobileWorld-Real is our proposed Chinese real-device mobile GUI benchmark (Section 3.2), and AndroidDaily (Sui et al. 2026) covers high-frequency daily scenarios on real Android devices.
ModelAccess / SizeMobileWorld-RealAndroidDaily
Baselines
Seed 2.1 Pro (ByteDance Seed 2026b)Closed-source88.795.2
Gemini 3.1 Pro (Google 2026a)Closed-source86.293.8
GPT-5.6 Sol (OpenAI 2026b)Closed-source85.492.6
Claude Opus 4.8 (Anthropic 2026)Closed-source84.793.0
Qwen 3.7 Plus (Qwen Team 2026a)Closed-source72.779.8
Kimi K2.6 (Moonshot AI 2026)1T-A32B62.667.6
PhoneBuddy-4B (Tang et al. 2026)4B53.569.0
UI-Venus-1.5-30B-A3B (Gao et al. 2026)30B-A3B33.061.7
GUI-Owl-1.5-32B-Instruct (Xu et al. 2026)32B32.460.9
GELab-Zero-4B-preview (Yan et al. 2025)4B31.373.4
Ours
Qwen-UI-Agent27B92.297.5
Qwen-UI-Agent35B-A3B87.493.9
Figure 4: Real-device mobile runtime with closed-loop environment governance. The health-aware scheduler routes each task to an eligible phone, App/account, and display; unhealthy targets remain blacklisted until repair and revalidation. Virtual displays allow one phone to run multiple Apps concurrently. Evidence-based review separates task success, model failure, and environment failure from the complete trajectory, and confirmed environment issues are fed back to the scheduler.
Figure 4: Real-device mobile runtime with closed-loop environment governance. The health-aware scheduler routes each task to an eligible phone, App/account, and display; unhealthy targets remain blacklisted until repair and revalidation. Virtual displays allow one phone to run multiple Apps concurrently. Evidence-based review separates task success, model failure, and environment failure from the complete trajectory, and confirmed environment issues are fed back to the scheduler.
Table 4: Performance comparison on OSWorld-Verified (Xie et al. 2024).
ModelAccess / SizeSuccess Rate (%)
Baselines
Claude Opus 4.8 (Anthropic 2026)Closed-source83.4
Seed 2.1 Pro (ByteDance Seed 2026b)Closed-source78.8
GPT-5.5 (OpenAI 2026a)Closed-source78.7
Gemini 3.5 Flash (Google 2026b)Closed-source78.4
Gemini 3.1 Pro (Google 2026a)Closed-source76.2
Qwen 3.7 Plus (Qwen Team 2026a)Closed-source73.3
MiniMax M3 (MiniMax 2026)428B-A23B75.2
Kimi K2.6 (Moonshot AI 2026)1T-A32B73.1
GUI-Owl-1.5-32B-Instruct (Xu et al. 2026)32B56.5
Ours
Qwen-UI-Agent27B79.5
Figure 5: The data flywheel of Qwen-UI-Agent. Domain capability bootstrapping initializes training, iterative refinement loop identifies capability weaknesses and generate targeted tasks, and the resulting data improve the next training iteration.
Figure 5: The data flywheel of Qwen-UI-Agent. Domain capability bootstrapping initializes training, iterative refinement loop identifies capability weaknesses and generate targeted tasks, and the resulting data improve the next training iteration.
Table 6: Performance comparison on WebArena (Zhou et al. 2024). Baseline results marked with ∗ are obtained from our own evaluation under the same experimental setup.
ModelAccess / SizeSuccess Rate (%)
Baselines
Claude Opus 4.8∗ (Anthropic 2026)Closed-source71.9
GPT-5.5∗ (OpenAI 2026a)Closed-source69.5
Gemini 3.1 Pro∗ (DeepMind 2025)Closed-source65.3
Qwen 3.7 Plus∗ (Qwen Team 2026a)Closed-source59.0
CUA-GYM-A17B (Wang et al. 2026)397B-A17B56.0
Kimi K2.6∗ (Moonshot AI 2026)1T-A32B55.8
Qwen3.5-397B-A17B (Qwen Team 2026b)397B-A17B54.0
GUI-Owl-1.5-32B-Thinking (Xu et al. 2026)32B48.4
Qwen3.5-27B (Qwen Team 2026b)27B41.5
Qwen3.5-35B-A3B (Qwen Team 2026b)35B-A3B40.8
Ours
Qwen-UI-Agent27B73.6
Qwen-UI-Agent35A3B69.2
Human Performance (Zhou et al. 2024)78.2
Figure 6: Overview of our harness for proactive service initiation and cross-platform execution. (I) Without the harness, users must manually interpret notifications, retrieve related context, and provide instructions for the agent. The proactive harness instead detects a flight cancellation, reasons over relevant affairs, proactively implement flight rebooking, railway alternatives, and meeting-conflict checks, and report an actionable plan. (II) The harness also maintains task state and support cross-platform execution. In the restaurant-selection example, Qwen-UI-Agent discovers candidates on mobile, organizes them in a desktop spreadsheet, sends the artifact for approval, and saves the selected locations back to mobile.
Figure 6: Overview of our harness for proactive service initiation and cross-platform execution. (I) Without the harness, users must manually interpret notifications, retrieve related context, and provide instructions for the agent. The proactive harness instead detects a flight cancellation, reasons over relevant affairs, proactively implement flight rebooking, railway alternatives, and meeting-conflict checks, and report an actionable plan. (II) The harness also maintains task state and support cross-platform execution. In the restaurant-selection example, Qwen-UI-Agent discovers candidates on mobile, organizes them in a desktop spreadsheet, sends the artifact for approval, and saves the selected locations back to mobile.
Table 7: Performance comparison on DeepSearch benchmarks: BrowseComp (BC) and BrowseComp-ZH (BC-ZH). “–” indicates the result is not reported.
ModelAccess / SizeBC (%)BC-ZH (%)
Baselines
GPT-5.5 (OpenAI 2026a)Closed-source90.1
Seed 2.1 Pro (ByteDance Seed 2026b)Closed-source86.2
Gemini 3.1 Pro (Google 2026a)Closed-source85.9
Claude Opus 4.8 (Anthropic 2026)Closed-source84.3
UI-TARS-2 (Wang et al. 2025a)Closed-source29.650.5
Qwen3.5-397B-A17B (Qwen Team 2026b)397B-A17B78.670.3
Apodex-1.0-mini (Apodex Team 2026)35B-A3B71.580.6
Qwen3.5-27B (Qwen Team 2026b)27B61.062.1
GLM-4.7 (Z.ai 2025)358B52.066.6
DeepSeek-V3.2 (DeepSeek-AI 2025)685B51.465.0
Tongyi-DR-30B (Tongyi DeepResearch 2025)30B-A3B43.446.7
Ours
Qwen-UI-Agent27B64.175.0
Figure 7: Overview of MobileWorld-Real, a real-device benchmark with human-written tasks that reflect the breadth of everyday mobile use. Representative examples and aggregate statistics show broad domain coverage and a long-tailed App distribution. Matched-model results further show lower success rates and longer trajectories than on AndroidDaily, highlighting the challenge of real-world mobile interaction.
Figure 7: Overview of MobileWorld-Real, a real-device benchmark with human-written tasks that reflect the breadth of everyday mobile use. Representative examples and aggregate statistics show broad domain coverage and a long-tailed App distribution. Matched-model results further show lower success rates and longer trajectories than on AndroidDaily, highlighting the challenge of real-world mobile interaction.
Table 8: Performance comparison on GUI grounding benchmarks. ScreenSpot-Pro reports no-zoom results, with zoom-in results shown in parentheses when available. Baseline results marked with ∗ are obtained from our own evaluation.
ModelsGrounding Benchmarks
SS-Pro(zoom in)SS-V2MM-GUI-L2OSW-G-RUI-Vision
Baselines
Qwen 3.7 Plus* (Qwen Team 2026a)68.9 (79.0)96.690.578.268.0
Seed 2.1 Pro* (ByteDance Seed 2026b)65.3 (80.7)96.690.978.062.0
Qwen3.5-4B* (Qwen Team 2026b)59.1 (60.3)94.383.462.032.6
Qwen3.5-35B-A3B* (Qwen Team 2026b)64.5 (68.6)95.287.563.652.3
Qwen3.5-27B* (Qwen Team 2026b)68.4 (70.3)96.189.167.946.6
GUI-Owl-1.5-2B-Instruct (Xu et al. 2026)57.8 (70.4)89.772.162.6
GUI-Owl-1.5-4B-Instruct (Xu et al. 2026)66.8 (75.6)93.283.268.4
GUI-Owl-1.5-8B-Instruct (Xu et al. 2026)71.1 (77.8)93.782.569.3
GUI-Owl-1.5-32B-Instruct (Xu et al. 2026)72.9 (80.3)95.386.869.7
UI-Venus-1.5-2B (Gao et al. 2026)57.7 (64.6)92.880.359.444.8
UI-Venus-1.5-8B (Gao et al. 2026)68.4 (73.9)95.988.169.746.5
UI-Venus-1.5-30B-A3B (Gao et al. 2026)69.6 (74.8)96.288.670.654.7
ZoomOnce-4B (Liu et al. 2026)66.295.287.673.140.2
HyMobileAgent-A3B (Shen et al. 2026)66.596.289.3
MAI-UI-2B (Zhou et al. 2025a)57.4 (62.8)92.582.663.530.3
MAI-UI-8B (Zhou et al. 2025a)65.8 (70.9)95.288.872.940.7
MAI-UI-32B (Zhou et al. 2025a)67.9 (73.5)96.591.375.047.1
GTA1-7B (Yang et al. 2025a)50.192.478.567.7
GTA1-32B (Yang et al. 2025a)63.695.283.472.2
UI-Ins-7B (Chen et al. 2025)52.294.083.1--
UI-Ins-32B (Chen et al. 2025)57.094.984.9--
OpenCUA-7B (Wang et al. 2025b)50.092.329.7
OpenCUA-32B (Wang et al. 2025b)55.393.433.3
OpenCUA-72B (Wang et al. 2025b)60.892.937.3
Ours
Qwen-UI-Agent-4B67.8 (74.0)94.987.970.551.6
Qwen-UI-Agent-35B-A3B76.1 (80.2)96.792.074.665.9
Qwen-UI-Agent-27B76.6 (81.5)97.592.678.570.0
Figure 8: Demonstration of real-device mobile GUI execution. The trajectory is rendered as key frames with the executed action annotated beneath each frame. In this cross-app task, the agent looks up the target address on Amap, finds the most popular café nearby on Dianping, and posts a summary of the findings on RedNote.
Figure 8: Demonstration of real-device mobile GUI execution. The trajectory is rendered as key frames with the executed action annotated beneath each frame. In this cross-app task, the agent looks up the target address on Amap, finds the most popular café nearby on Dianping, and posts a summary of the findings on RedNote.
Table 10: Failure-pattern distribution over all failed Qwen 3.7 Plus trajectories on real devices.
DimensionFailure PatternProp.Typical Behavior
Execution Capability Limitations (40.3%)Exploration Failure19.5%Fail to locate deep in-app entries
Erroneous Action Loops14.3%Repeat ineffective actions
Lost Execution State6.5%Forget finished sub-tasks
Real-world Scenario Challenges (52.0%)UI Misreading24.7%Misread stateful page semantics
Pop-up Interference18.2%Ads, paywalls, CAPTCHAs, blank pages
Physical Widget Control9.1%Overshoot targets, never converge
Others7.7%Under-execution, premature stop
Figure 9: Demonstration of hybrid GUI+CLI execution in computer-use tasks. Key frames are shown with the emitted actions, where CLI commands are highlighted in blue, GUI actions in red, and each step carries a short annotation of its intent. In this example, the agent selects the target photo and filters by stitching all candidates into a single montage via CLI for one-shot visual inspection, rather than opening each image individually. It then leverages hybrid execution to combine CLI-based processing with GUI-based verification for the final output.
Figure 9: Demonstration of hybrid GUI+CLI execution in computer-use tasks. Key frames are shown with the emitted actions, where CLI commands are highlighted in blue, GUI actions in red, and each step carries a short annotation of its intent. In this example, the agent selects the target photo and filters by stitching all candidates into a single montage via CLI for one-shot visual inspection, rather than opening each image individually. It then leverages hybrid execution to combine CLI-based processing with GUI-based verification for the final output.
Table 11: GUI+CLI usage and batched-execution statistics on OSWorld-Verified and OSWorld-v2. Panel (a) reports CLI and batched-action usage at the action and task levels. Panel (b) reports the composition of batched outputs. Mean batch size counts the number of primitive actions in a batch. Differences are computed as OSWorld-v2 minus OSWorld-Verified. Differences are reported in percentage points (pp).
StatisticLevelOSWorld-VerifiedOSWorld-v2Difference (pp)
(a) Overall CLI and batched-action usage
CLIAction40.7%55.1%+14.4
CLITask92.0%98.2%+6.2
BatchedAction39.6%41.6%+2.0
BatchedTask62.1%88.9%+26.8
(b) Composition of batched outputs
GUI-only batches75.8%64.7%-11.1
CLI-only batches13.1%15.0%+1.9
Mixed GUI+CLI batches11.0%20.3%+9.3
Mean primitive actions per batch3.13.10.0
Figure 10: Demonstration of DeepSearch-assisted GUI execution. The upper panels show the multi-round search process, including keyword-based DeepSearch, targeted web fetches with intermediate thoughts, and the final search summary; the lower row shows the subsequent GUI trajectory. DeepSearch resolves the knowledge and reasoning problem before GUI execution, converting the vague cross-source request into an explicit target: Qwen-UI-Agent identifies the largest comeback in the World Cup knockout stage through DeepSearch, then opens RedNote and navigates directly to the highest-engagement related post from the past week without blind in-app searching.
Figure 10: Demonstration of DeepSearch-assisted GUI execution. The upper panels show the multi-round search process, including keyword-based DeepSearch, targeted web fetches with intermediate thoughts, and the final search summary; the lower row shows the subsequent GUI trajectory. DeepSearch resolves the knowledge and reasoning problem before GUI execution, converting the vague cross-source request into an explicit target: Qwen-UI-Agent identifies the largest comeback in the World Cup knockout stage through DeepSearch, then opens RedNote and navigates directly to the highest-engagement related post from the past week without blind in-app searching.
Table 13: Performance comparison between frequent and long-tail actions.
Action GroupOriginal Data ProportionReward before Action RLReward after Action RL
Frequent actions80.1%88.3%92.3%
Long-tail actions19.9%71.5%77.9%
Figure 11: Demonstration of proactive service based on mobile notifications. The trajectory is organized into highlighted stages: proactive task initiation from a detected notification, proactive execution phases, and a decision-ready result, with the executed action annotated beneath each key frame. Flight-cancellation recovery: when the user’s next-morning flight is canceled and a 14:00 demo is at risk, the harness proactively searches alternative flights and high-speed trains, evaluates which options arrive on time, and presents a decision-ready travel recovery plan.
Figure 11: Demonstration of proactive service based on mobile notifications. The trajectory is organized into highlighted stages: proactive task initiation from a detected notification, proactive execution phases, and a decision-ready result, with the executed action annotated beneath each key frame. Flight-cancellation recovery: when the user’s next-morning flight is canceled and a 14:00 demo is at risk, the harness proactively searches alternative flights and high-speed trains, evaluates which options arrive on time, and presents a decision-ready travel recovery plan.

研究结果

  • 在MobileWorld-Real(超过400个任务的真机基准)上,Qwen-UI-Agent达到92.2%的成功率,分别领先Gemini 3.1 Pro、Claude Opus 4.8、GPT-5.6 Sol和Seed 2.1 Pro 6.0、7.5、6.8和3.5个百分点
  • 在真机基准AndroidDaily上达到97.5%,在模拟基准MobileWorld上达到82.1%,领先Opus 4.8、GPT-5.6 Sol和Seed 2.1 Pro 14.6、12.0和8.9个百分点
  • 在OSWorld-Verified(电脑使用)上取得79.5%,领先GPT-5.5、Gemini 3.1 Pro和Seed 2.1 Pro;在更难的OSWorld-v2上部分进度得分为40.0%,分别领先MiniMax M3和Qwen 3.7 Plus 17.7和18.5个百分点,且所需步数分别减少58.4%和21.7%
  • 在WebArena(浏览器使用)上取得73.6%,领先Claude Opus 4.8、GPT-5.5和Gemini 3.1 Pro 1.7、4.1和8.3个百分点;在深度搜索基准上BrowseComp得分64.1%、BrowseComp-ZH得分75.0%,超过Qwen3.5-397B-A17B和UI-TARS-2
  • 对OSWorld系列轨迹的分析显示,命令行动作占全部动作的40.7%至55.1%,批量动作占39.6%至41.6%,平均每批包含3.1个原始动作
Figure 12: Demonstration of cross-platform task execution. In this workflow, mobile subtasks run on virtual screens of the physical device, so execution does not block the user’s own actions. Parallel multi-app search: the agent searches sushi restaurants on Dianping, Meituan, and Amap concurrently through multiple virtual screens, consolidates their ratings, and summarizes the top three options in a local report opened on the computer.
Figure 12: Demonstration of cross-platform task execution. In this workflow, mobile subtasks run on virtual screens of the physical device, so execution does not block the user’s own actions. Parallel multi-app search: the agent searches sushi restaurants on Dianping, Meituan, and Amap concurrently through multiple virtual screens, consolidates their ratings, and summarizes the top three options in a local report opened on the computer.

可应用场景

  • 设计能识别通知或状态变化、主动提出方案供用户确认的移动端主动助手
  • 为纯屏幕操作效率低的文件处理、结构化数据任务设计结合命令行与GUI的桌面自动化
  • 设计跨越多个应用收集信息并将结果转交给另一台设备(如电脑)的跨平台工作流
  • 参考真机场景中弹窗、占位文本误读、滑块控制等失败模式来设计智能体训练数据

局限与待验证事项

  • 报告的真机结果仅覆盖MobileWorld-Real和AndroidDaily两个基准,在其他语言或设备生态下的泛化性尚未验证
  • 详细的失败模式分析针对的是对比模型Qwen 3.7 Plus的真机轨迹,并未给出Qwen-UI-Agent自身剩余失败类型的完整分解
  • 在更难的OSWorld-v2设置下,Qwen-UI-Agent的二元成功率(13.9%)仅排第二,部分进度得分排第三,并非在最难条件下的最优表现
  • 主动服务框架从用户反馈中长期自我改进的效果以案例演示为主,未给出量化评估结果
  • 报告的对比对象是撰写时特定版本的Opus 4.8、Gemini 3.1 Pro、GPT-5.6 Sol等前沿模型,这些模型后续更新后相对优势可能发生变化

为什么重要

GUI智能体常常在模拟基准上表现出色却在真实设备上频频失败,这份报告直接针对这一差距,在更接近真实部署的条件下测试系统。其中的系统结构和数据可以为设计真机自动化、跨设备工作流以及通知驱动的主动助手提供参考。

本文术语

  • GUI智能体 · 通过观察屏幕并执行点击、输入等操作代替用户操作应用的人工智能
  • 命令行(CLI) · 不依赖屏幕操作,通过输入文字指令执行任务的接口
  • 批量动作 · 在一次决策中一并输出多个动作,而不是每个动作都单独走一轮模型判断
  • 在线强化学习 · 模型持续与环境交互,根据任务成功与否不断更新的训练方式
  • 外层框架(harness) · 连接核心智能体与真实场景上下文的辅助层,使其能够主动发起服务

论文原文摘要(英文)

GUI agents have the potential to become a general purpose executor over existing digital devices. To advance them toward real-world use, we envision agents that operate reliably on real devices, execute workflows across platforms, combine GUI interaction with CLI execution, complete long-horizon tasks, proactively initiate useful services, and autonomously improve their capabilities with minimal human effort. Guided by this vision, we present Qwen-UI-Agent, a real-world centric foundation GUI ag

作者 · Hanzhang Zhou

在 arXiv 阅读

最新论文

全部论文 →

METAL LAB 最新报道

图片来源: Hanzhang Zhou et al., arXiv:2607.28227, CC BY 4.0