3 cumulative citations
View corpus contextTeaching web agents when people will step in makes them more helpful: models trained on 400 real-user navigation traces raise intervention-prediction accuracy by roughly 60% and boost perceived agent usefulness by 37% in live tests.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
Despite rapid progress in autonomous web agents, human involvement remains essential for shaping preferences and correcting agent behavior as tasks unfold. However, current agentic systems lack a principled understanding of when and why humans intervene, often proceeding autonomously past critical decision points or requesting unnecessary confirmation. In this work, we introduce the task of modeling human intervention to support collaborative web task execution. We collect CowCorpus, a dataset of 400 real-user web navigation trajectories containing over 4,200 interleaved human and agent actions. We identify four distinct patterns of user interaction with agents -- hands-off supervision, hands-on oversight, collaborative task-solving, and full user takeover. Leveraging these insights, we train language models (LMs) to anticipate when users are likely to intervene based on their interaction styles, yielding a 61.4-63.4% improvement in intervention prediction accuracy over base LMs. Finally, we deploy these intervention-aware models in live web navigation agents and evaluate them in a user study, finding a 36.8% increase in user-rated agent usefulness. Together, our results show structured modeling of human intervention leads to more adaptive, collaborative agents.
Summary
Main Finding
Modeling when and how humans intervene in web-agent workflows—by learning user-specific collaboration styles—enables agents to ask for help only when needed. Using COWCORPUS (400 real user–agent trajectories) and multimodal LMs fine-tuned to predict intervention, the authors achieve a 61.4–63.4% improvement in intervention prediction accuracy over baseline LMs and a 36.8% increase in user-rated agent usefulness in live studies.
Key Points
- Problem: Current autonomous web agents either proceed past critical decision points or over-request confirmations; neither behavior aligns well with diverse human oversight needs.
- New task: Stepwise human-intervention prediction: at each agent action predict whether the human will intervene given prior trajectory, current webpage screenshot, accessibility tree, and proposed agent action.
- Dataset (COWCORPUS): 400 trajectories from 20 participants (200 standard tasks + 200 free-form), 2,748 agent steps and 1,476 human steps; annotated step-level interventions and motivations.
- User collaboration styles (clustered by intervention frequency/intensity, timing, and handback rate):
- Takeover: intervene late and retain control.
- Hands-on: frequent interventions, alternate control.
- Hands-off: rarely intervene.
- Collaborative: targeted, short interventions and hand control back.
- Motivations for intervention: error correction/recovery, preference refinement, assistive takeover for complex UIs.
- Modeling approach: formulate as POMDP; build LMMs via supervised fine-tuning to output
or . Two model types: general intervention-aware and style-conditioned models. - Metrics: step accuracy, F1, and Perfect Timing Score (PTS) which penalizes temporally imprecise predictions.
- Results: large gains in offline prediction accuracy (61.4–63.4% over baselines) and practical gains in a user study (36.8% higher perceived usefulness).
- Release: dataset and models publicly linked (paper: huggingface.co/CowCorpus; code: github.com/oaishi/PlowPilot).
Data & Methods
- Data collection:
- 20 participants performed 20 web tasks each (10 from Mind2Web benchmark, 10 free-form).
- Logged actor (human/agent), timestamps, screenshots, accessibility trees, and intervention events (pauses, resumes, overrides).
- Per-user features (used for clustering):
- Intervention frequency = total intervention events / total actions.
- Intervention intensity = total human steps / total agent steps.
- Normalized intervention position = mean position of human actions within trajectories.
- Handback rate = fraction of interventions after which agent regains control.
- Clustering: k-means (k=4) on those features to identify the four collaboration styles.
- Formalization: At each step t, predict p(y_t = 1 | o_t, â_t, τ_{0:t-1}), where o_t = (screenshot V_t, accessibility tree A_t) and â_t is the agent’s proposed action.
- Model training:
- Multimodal LMs (large multimodal model fine-tuned via supervised learning).
- Inputs serialized: prior trajectory, current observation, and proposed action.
- Outputs: binary tokens (
or ). - Hands-off cluster excluded from train/test for intervention prediction because it contains no interventions.
- Evaluation:
- Train/test split by trajectory; balanced intervention ratio ~1:7.
- Metrics: step accuracy, F1, PTS (timing-aware).
- Baselines: Always-No-Interv and Always-Interv plus prompting/proprietary models.
- Deployment: integrated intervention models into a live web agent (CowPilot framework) and ran a user study to measure perceived usefulness.
Implications for AI Economics
- Reduced oversight labor and time costs: Accurate intervention prediction can lower the number and mistimed frequency of human interruptions, reducing monitoring time and increasing productivity per human supervisor. This has straightforward cost-savings for organizations that rely on human-in-the-loop automation.
- Improved task throughput and quality: Better-timed interventions reduce error recovery costs (redoing tasks, lost time), improving expected output quality and reducing rework—important for service automation and back-office processes.
- Personalization as a value lever: Style-conditioned models show value from tailoring agent behavior to user collaboration style. This supports business models that charge premiums for personalized agents or for enterprise deployments that adapt to worker archetypes.
- Labor-market and task composition effects: As agents reliably handle more steps with fewer human interventions, some routine oversight roles may shrink while demand for higher-skilled supervision (handling exceptions) could increase. This suggests reallocation of labor toward tasks needing judgment or complex exception handling.
- Platform and product differentiation: Intervention-aware agents provide measurable UX gains (36.8% perceived usefulness). Vendors can differentiate on trust/efficiency metrics (fewer false alarms, fewer unnecessary confirmations) — potentially influencing adoption and pricing competition.
- Externalities and regulatory considerations:
- Liability and accountability: Agents that autonomously act unless an intervention is predicted raise questions about responsibility for mistakes; intervention modeling could be used to audit when humans should have been engaged.
- Privacy/lock-in: Personalization needs user interaction logs and behavioral clustering—data that may increase vendor lock-in and raise privacy/compliance costs.
- Areas for economic evaluation and future work:
- Cost–benefit analyses quantifying supervision time saved vs. model training/deployment costs across domains (customer service, e-commerce, data entry).
- Optimal pricing and contracting: How to price tiers (hands-off vs. collaborative vs. takeover) and incentive structures for shared-control workflows.
- Market impacts: Study whether intervention-aware features drive concentration (platform effects) or create a market for third-party personalization services.
- Policy: Standards for transparency and audit logs specifying when an agent predicted interventions and how decisions were made could affect regulatory compliance costs.
Limitations to note for economic interpretation: small participant pool (20 users), domain limited to web navigation tasks, Hands-off users excluded from modeling, and potential generalization gaps across cultures, industries, or higher-stakes domains. These affect how transferable estimated cost-savings might be in practice.
Assessment
Claims (7)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| We collect CowCorpus, a dataset of 400 real-user web navigation trajectories containing over 4,200 interleaved human and agent actions. Other | positive | size and composition of collected dataset (number of trajectories and interleaved actions) |
Reading fidelity
high
Study strength
high
|
n=400
|
| We identify four distinct patterns of user interaction with agents -- hands-off supervision, hands-on oversight, collaborative task-solving, and full user takeover. Task Allocation | positive | categorization of user-agent interaction patterns |
Reading fidelity
high
Study strength
medium
|
n=400
|
| Leveraging these insights, we train language models (LMs) to anticipate when users are likely to intervene based on their interaction styles, yielding a 61.4-63.4% improvement in intervention prediction accuracy over base LMs. Task Allocation | positive | intervention prediction accuracy |
Reading fidelity
high
Study strength
medium
|
61.4-63.4% improvement in intervention prediction accuracy over base LMs
|
| We deploy these intervention-aware models in live web navigation agents and evaluate them in a user study, finding a 36.8% increase in user-rated agent usefulness. Consumer Welfare | positive | user-rated agent usefulness |
Reading fidelity
high
Study strength
medium
|
36.8% increase in user-rated agent usefulness
|
| Structured modeling of human intervention leads to more adaptive, collaborative agents. Team Performance | positive | agent adaptiveness and collaborativeness (behavioral quality of agents) |
Reading fidelity
medium
Study strength
medium
|
not reported
|
| Despite rapid progress in autonomous web agents, human involvement remains essential for shaping preferences and correcting agent behavior as tasks unfold. Task Allocation | positive | necessity of human involvement in agentic web tasks |
Reading fidelity
medium
Study strength
speculative
|
not reported
|
| Current agentic systems lack a principled understanding of when and why humans intervene, often proceeding autonomously past critical decision points or requesting unnecessary confirmation. Task Allocation | negative | frequency and nature of inappropriate autonomy or unnecessary confirmations in existing agentic systems |
Reading fidelity
medium
Study strength
speculative
|
not reported
|