Research
Egocentric Co-Pilot: Web-Native Smart-Glasses Agents for Assistive Egocentric AI
Overview Research area: Human-Computer Interaction, Egocentric AI, wearable assistive technology, and LLM-orchestrated web agents. Technical level: Intermediate — assumes familiarity with LLMs, multim
- arXiv
- 2603.01104
- Published
- 2026-03-01
- Authors
- Sicheng Yang, Yukai Huang, Weitong Cai, Shitong Sun, Fengyi Fang, You He, Yiqiao Xie, Jiankang Deng, Hang Zhang, Jifei Song, Zhensong Zhang
AI summary
Overview
Research area: Human-Computer Interaction, Egocentric AI, wearable assistive technology, and LLM-orchestrated web agents. Technical level: Intermediate — assumes familiarity with LLMs, multimodal models, and agentic architectures but explains the system design clearly enough for non-specialists to follow. Scope: Introduces and evaluates a modular, web-native smart-glasses assistant that combines an LLM orchestrator, neuro-symbolic tools, and long-horizon egocentric reasoning to provide real-time, hands-free assistance.
What This Paper Is About
Smart glasses with AI could make the web accessible to people who cannot easily use screens, keyboards, or free hands — such as those with low vision, mobility limitations, or cognitive overload. However, current monolithic multimodal models (MLLMs) struggle with ambiguous instructions, specialized reasoning tasks like strategy games, and continuous first-person video streams that exceed context windows. The paper asks how to build an always-on egocentric co-pilot that reliably interprets noisy user intent and invokes the right specialized tools through standard web protocols.
Key Contributions
- A neuro-symbolic orchestration framework. An LLM acts as a central controller that selects and composes on-device perception modules, symbolic reasoners, and web APIs through a lightweight Model-Context Protocol (MCP), making rich capabilities available on resource-constrained smart glasses.
- A multimodal intent disambiguation module. The system detects ambiguity in speech and gaze, asks clarifying follow-up questions when needed, and uses 3D ray-casting from the egocentric viewpoint to determine what a user is pointing at — prioritizing correctness over throughput in assistive contexts.
- A dual-level long-horizon reasoning core. Temporal Chain-of-Thought (T-CoT) handles fine-grained short-term reasoning over recent video, while Hierarchical Context Compression (HCC) summarizes and selects relevant past events to extend reasoning beyond the MLLM's native context window.
- A complete, evaluated system. The authors deployed the framework on smart glasses with two backends — a cloud-native WebRTC pipeline (LiveKit) and an on-premise WebSocket baseline — and validated it on egocentric QA benchmarks (Egolife, HD-EPIC) and a human-in-the-loop user study against commercial devices.
Main Findings
- State-of-the-art egocentric QA. On Egolife the system reaches 40.9% accuracy (vs. 38.1% for Qwen2.5-VL and 36.2% for GPT-4o); on HD-EPIC it reaches 46.2% (vs. 37.6% for Gemini-1.5-Pro), showing the T-CoT strategy is especially strong for action-centric clips.
- Every component matters. Ablations show that removing HCC costs 2.0 points on Egolife and 4.68 on HD-EPIC, removing T-CoT costs 1.4 and 3.55 points respectively, and domain-specific fine-tuning is the single largest contributor on HD-EPIC (−5.62 points without it).
- Strong real-world tool-use reliability. The system achieved a 98.5% Task Completion Rate on foundational tool-use tasks (calorie lookup, reminders, notes) and a 98% end-to-end success rate across 50 board-game sessions requiring perception, symbolic search, and natural-language explanation.
- Higher user satisfaction than commercial baselines. In a blinded human-in-the-loop study, Egocentric Co-Pilot scored 4.70 out of 5 on intent understanding and task execution, approaching the human baseline (4.92) and outperforming all commercial smart-glasses baselines on both subjective ratings and objective task completion.
- Four failure modes identified. Manual inspection categorized failures as perception errors (poor lighting, fast head motion), intent misunderstandings (overgeneralized deictic references), tool-level issues (missing arguments, unexpected API responses), and long-horizon memory omissions.
- Reasonably robust hyperparameters. Halving HCC summary length or doubling chunk size reduces Egolife accuracy by only 1.0–1.6 points, suggesting the compression scheme is not brittle.
Methodology in Plain English
Instead of asking one giant AI model to do everything, the researchers built a "toolbox" architecture. A central language model receives the user's spoken command along with first-person video from the glasses, decides what kind of request it is, and then picks the right specialized tools to answer it — such as an object recognizer, a calendar API, or a chess engine.
For continuous video, they split the problem into two time scales. Recent events are handled with Temporal Chain-of-Thought, which pulls a narrow window of relevant moments and arranges them into a story. Distant past events are handled with Hierarchical Context Compression, which chunks the history, has a smaller text model summarize each chunk, and only feeds the relevant summaries forward — letting the system "remember" much more than the model's built-in context window allows.
For unclear commands (e.g., "analyze this" while pointing at a cluttered shelf), the system either asks a short clarifying question or uses 3D ray-casting from the camera to figure out what the user is indicating. Tools are exposed through a JSON-schema-based Model-Context Protocol that runs over standard web channels (WebRTC or HTTPS), so the same ecosystem works for both the glasses and a browser playground. Safety guardrails restrict the LLM to an allowlist of non-destructive tools, validate arguments against schemas, and require explicit user confirmation for any side-effecting action.
They evaluated the reasoning core on two egocentric QA benchmarks, then built the full end-to-end system on off-the-shelf smart glasses and tested it across three task categories: basic tool use, embodied board-game assistance, and complex neuro-symbolic reasoning. Finally, they ran a blinded human study where raters watched anonymized interaction logs from their system and several commercial devices.
Why This Matters
This work argues that scaling monolithic multimodal models is not the only path to trustworthy assistive AI — carefully orchestrating specialized, auditable tools around a principled sensing pipeline can be more practical, more reliable, and easier to govern on the web. It grounds assistive AI in real hardware and real users rather than benchmarks alone, and it explicitly designs for accessibility rather than engagement.
Real-world applications:
- Low-vision assistance: reading nutrition labels, medication instructions, or street signs hands-free.
- Cognitive support: context-aware reminders, appointment tracking, and multi-step task guidance for people with memory or attention challenges.
- Situated education: over-the-board game tutoring, language learning, or step-by-step repair and cooking guidance.
- Hands-busy professions: field technicians, surgeons, or warehouse workers who need information without touching a device.
Industry relevance: The framework points toward a deployable blueprint for smart-glasses vendors, browser and conferencing platforms (via WebRTC), and web-service providers who could expose APIs to wearable agents. Its emphasis on schema-validated tool calls and allowlists also speaks to emerging governance concerns around autonomous agents acting on the web.
Future Directions
- Stronger safety and capability management. The authors call for per-application tool policies, schema versioning, and transactional commit/abort semantics to move beyond the current best-effort, allowlist-based guardrails.
- On-device models and energy accounting. Reducing cloud dependence through parameter-efficient adaptation and capable on-device inference, plus explicit reporting of latency and energy footprints across deployment options.
- Longitudinal and inclusive studies. Testing with older adults, people with disabilities, and users in high-stakes scenarios over extended periods, rather than short sessions with healthy adults under controlled conditions.
- Privacy for always-on capture. On-device filtering, bystander consent mechanisms, and privacy-preserving training tailored to continuous egocentric video.
Target Audience
Researchers and practitioners in human-computer interaction, wearable computing, assistive technology, and multimodal AI agent design. The paper is also valuable for product teams building smart-glasses software, accessibility advocates evaluating what current AI can realistically deliver, and engineers interested in how LLM orchestration, neuro-symbolic tool use, and web-native protocols (WebRTC, MCP) can be combined in a real deployed system.
Authors’ abstract
What if accessing the web did not require a screen, a stable desk, or even free hands? For people navigating crowded cities, living with low vision, or experiencing cognitive overload, smart glasses coupled with AI agents could turn the web into an always-on assistive layer over daily life. We present Egocentric Co-Pilot, a web-native neuro-symbolic framework that runs on smart glasses and uses a Large Language Model (LLM) to orchestrate a toolbox of perception, reasoning, and web tools. An egocentric reasoning core combines Temporal Chain-of-Thought with Hierarchical Context Compression to support long-horizon question answering and decision support over continuous first-person video, far beyond a single model's context window. Additionally, a lightweight multimodal intent layer maps noisy speech and gaze into structured commands. We further implement and evaluate a cloud-native WebRTC pipeline integrating streaming speech, video, and control messages into a unified channel for smart glasses and browsers. In parallel, we deploy an on-premise WebSocket baseline, exposing concrete trade-offs between local inference and cloud offloading in terms of latency, mobility, and resource use. Experiments on Egolife and HD-EPIC demonstrate competitive or state-of-the-art egocentric QA performance, and a human-in-the-loop study on smart glasses shows higher task completion and user satisfaction than leading commercial baselines. Taken together, these results indicate that web-connected egocentric co-pilots can be a practical path toward more accessible, context-aware assistance in everyday life. By grounding operation in web-native communication primitives and modular, auditable tool use, Egocentric Co-Pilot offers a concrete blueprint for assistive, always-on web agents that support education, accessibility, and social inclusion for people who may benefit most from contextual, egocentric AI.