Fara1.5 – 一系列边缘计算机使用代理模型
microsoft/WebTailBench
(use the refreshed test_v2 split; a V1↔V2 diff is hosted
here),
the Universal Verifier (MMRubricAgent) is the official judge, and the
reproducibility CLI lives in webeval/scripts/webtailbench.py (stand-alone
re-scoring via webeval/scripts/verify_trajectories.py).fara7b_om2w_browserbase (106
Fara-7B Online-Mind2Web/Browserbase trajectories, ~2 reviewers each) and
internal (154 trajectories from a heldout aurora-v2 task suite) —
with per-judge UV-blind / UV-informed labels, Universal Verifier
outputs, and legacy verifier outputs side-by-side. The build script
that produced the dataset lives alongside the data on Hugging Face.Fara1.5 is a family of native Computer Use Agents (CUAs) at three scales — Fara1.5-4B, Fara1.5-9B, and Fara1.5-27B — built on Qwen3.5 and trained with supervised finetuning on data from FaraGen1.5, our scalable data pipeline of environments, solvers, and verifiers. Each model sets a new state of the art for its size class on browser-use benchmarks, and Fara1.5-27B outperforms much larger proprietary systems such as OpenAI Operator and Gemini 2.5 Computer Use on Online-Mind2Web.
Fara1.5 models operate through an observe-think-act loop: given a screenshot of the browser and the conversation history, the model reasons about the state of the task and outputs an action — mouse and keyboard inputs on directly predicted coordinates, web searches, or context management operations — with no accessibility trees or separate parsing models.
All three models are available on Microsoft Foundry: Fara1.5-4B, Fara1.5-9B, and Fara1.5-27B.
Try Fara1.5-9B as follows (see Installation for detailed instructions):
# 1. Clone repository
git clone https://github.com/microsoft/fara.git
cd fara
# 2. Setup environment
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
playwright installDeploy Fara1.5-9B from the Microsoft Foundry catalog and put your endpoint in a config JSON (e.g. azure_foundry_config.json):
{
"model": "Fara1.5-9B",
"base_url": "https://your-endpoint.inference.ml.azure.com/",
"api_key": "YOUR_API_KEY_HERE"
}Then you can iteratively query it with:
fara-cli --task "whats the weather in new york now" --endpoint_config azure_foundry_config.jsonTo try Fara inside Magentic-UI — a sandboxed browser environment with auditable action logging and user prompts at critical points — follow the instructions in the Magentic-UI repo. You will need a model endpoint as before, but instead of fara-cli you can use Magentic-UI which has a nice UI (see video demos below).
Note: If you're using Windows, we highly recommend using WSL2 (Windows Subsystem for Linux). Please see the Windows instructions in the Installation section.
Unlike traditional chat models that generate text-based responses, Fara1.5 leverages computer interfaces—mouse and keyboard—to perform multi-step tasks on behalf of users. The models:
Collecting computer use data from human demonstrations is expensive and slow. FaraGen1.5 is a scalable data pipeline composed of three modular components:
The resulting training mix contains roughly 2M samples: ~60% web trajectories, 12.8% synthetic environments, 12.5% form filling, 8.8% grounding, 4.9% VQA, and 0.8% GUI drag tasks.
Fara1.5 can automate everyday web tasks including:
Each Fara1.5 model sets a new state of the art for its size class. Fara1.5-9B improves over Fara-7B by +29.3 points on Online-Mind2Web, +13.1 points on WebVoyager, and +8.2 points on WebTailBench outcome success:
| Model | Size | WebVoyager | Online-Mind2Web | WebTailBench v1.5 (Process) | WebTailBench v1.5 (Outcome) |
|---|---|---|---|---|---|
| Larger and proprietary agents | |||||
| o3 SoM | - | 79.3 | 55.4 | 69.5 | 35.0 |
| GPT-5 SoM | - | 90.6 | 57.7 | 69.2 | 45.1 |
| Gemini 2.5 Computer Use† | - | - | 57.3 | - | - |
| OpenAI Operator† | - | 87.0 | 58.3 | - | - |
| Yutori Navigator (n1)† | - | - | 64.7 | - | - |
| GUI-Owl-1.5† | 32B | 82.0 | - | - | - |
| Holo2† | 30B-A3B | 83.0 | - | - | - |
| Similarly sized agents | |||||
| Fara-7B | 7B | 73.5 | 34.1 | 48.8 | 24.1 |
| MolmoWeb† | 8B | 78.2 | 35.3 | - | - |
| Holo2† | 8B | 80.2 | - | - | - |
| GUI-Owl-1.5† | 8B | 78.1 | 48.6 | - | - |
| Fara1.5 family (ours) | |||||
| Fara1.5-4B | 4B | 80.8 | 57.3 | 60.3 | 27.4 |
| Fara1.5-9B | 9B | 86.6 | 63.4 | 64.5 | 32.3 |
| Fara1.5-27B | 27B | 89.3 | 72.3 | 72.9 | 40.2 |
| FaraGen1.5 Solver (GPT-5.4) | - | 93.4 | 83.4 | 79.6 | 57.4 |
Table: Task success rate (%) on WebVoyager, Online-Mind2Web, and WebTailBench v1.5. For WebTailBench v1.5 we report both Process Success (correct intermediate steps) and Outcome Success (final task state correct). All Fara1.5 and Fara-7B numbers are averaged over three independent runs. The GPT-5.4-based FaraGen1.5 solver is an upper-bound reference for the SFT-based distillation. † denotes numbers sourced from the model's official release or leaderboard rather than re-run by us.
WebTailBench is our evaluation benchmark focusing on 11 real-world task types that are underrepresented or missing in existing benchmarks. The benchmark includes 609 tasks across diverse categories, with the first 8 segments testing single skills or objectives (usually on a single website), and the remaining 3 evaluating more difficult multi-step or cross-site tasks (shopping lists, comparison shopping, and compositional tasks). Tasks and precomputed rubrics are on Hugging Face (use the refreshed test_v2 split), the Universal Verifier (MMRubricAgent) is the official judge, and the reproducibility CLI lives in webeval/scripts/webtailbench.py.
While WebTailBench measures agents, CUAVerifierBench measures the judges that score those agents. Each row pairs a Fara agent trajectory (instruction, screenshots, web_surfer log, final answer) with one human reviewer's verdict, plus the verdicts produced by the Universal Verifier (MMRubricAgent) and several legacy verifiers — so researchers can compute verifier–human agreement (Cohen's κ, accuracy, F1) on a fixed corpus and iterate on new judge prompts / architectures against a frozen ground-truth set.
The dataset is exposed as two Hugging Face configs joinable on task_id:
| Config | Granularity | Contents |
|---|---|---|
trajectories |
one row per task | instruction, screenshots, web_surfer log, verifier outputs, task-level human aggregates |
annotations |
one row per (task, judge) | per-reviewer outcome / process labels and free-text justifications |
Two splits ship today:
| Split | Source | Trajectories | Annotation rows |
|---|---|---|---|
fara7b_om2w_browserbase |
Fara-7B trajectories on Online-Mind2Web tasks executed via Browserbase | 106 | 215 (≈2 reviewers/task; UV-blind and UV-informed stages) |
internal |
Heldout aurora-v2 task suite scored with the same WebSurfer + verifier stack | 154 | 154 (1 reviewer/task; UV-blind only) |
Reviewer identities are anonymized as Judge1 … JudgeN using a single shared map across both splits. The build script that produced the dataset (with full schema + provenance) ships alongside the data on Hugging Face at [microsoft/CUAVerifierBench](https://huggingface.co/datasets/microsoft/CUAVerifierBen
暂无开放 Issues,或尚未同步最近议题。