Image-Text-to-Text
Transformers
Safetensors
English
qwen2_5_vl
Multimodal
VLM
Computer-Use-Agent
Web-Agent
GUI
Grounding
GUI Subtask
conversational
text-generation-inference
Instructions to use Uniphore/actio-ui-7b-sft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Uniphore/actio-ui-7b-sft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="Uniphore/actio-ui-7b-sft") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("Uniphore/actio-ui-7b-sft") model = AutoModelForMultimodalLM.from_pretrained("Uniphore/actio-ui-7b-sft") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Uniphore/actio-ui-7b-sft with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Uniphore/actio-ui-7b-sft" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Uniphore/actio-ui-7b-sft", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Uniphore/actio-ui-7b-sft
- SGLang
How to use Uniphore/actio-ui-7b-sft with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Uniphore/actio-ui-7b-sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Uniphore/actio-ui-7b-sft", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Uniphore/actio-ui-7b-sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Uniphore/actio-ui-7b-sft", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use Uniphore/actio-ui-7b-sft with Docker Model Runner:
docker model run hf.co/Uniphore/actio-ui-7b-sft
| language: | |
| - en | |
| license: openmdw-1.0 | |
| model_name: ActIO-UI-7B-SFT | |
| base_model: | |
| - Qwen/Qwen2.5-VL-7B-Instruct | |
| pipeline_tag: image-text-to-text | |
| tags: | |
| - Multimodal | |
| - VLM | |
| - Computer-Use-Agent | |
| - Web-Agent | |
| - GUI | |
| - Grounding | |
| - GUI Subtask | |
| library_name: transformers | |
| <h1 style=" | |
| font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif; | |
| font-size:48px; | |
| font-weight:700; | |
| line-height:1.25; | |
| text-align:center; | |
| margin:0 0 24px;"> | |
| ActIO-UI: Vision-Language Models for GUI Subtasks | |
| </h1> | |
| <div style=" | |
| display:flex; | |
| justify-content:center; | |
| gap:12px; | |
| flex-wrap:wrap; | |
| margin-bottom:28px;"> | |
| <a href="https://sanjari-orb.github.io/warc-bench/" style=" | |
| display:inline-block; | |
| padding:8px 24px; | |
| background:#2b2b2b; | |
| color:#ffffff; | |
| border-radius:36px; | |
| text-decoration:none; | |
| font-weight:600; | |
| font-size:16px;"> | |
| 🌐 Website | |
| </a> | |
| <a href="https://arxiv.org/abs/2510.09872" style=" | |
| display:inline-block; | |
| padding:8px 24px; | |
| background:#2b2b2b; | |
| color:#ffffff; | |
| border-radius:36px; | |
| text-decoration:none; | |
| font-weight:600; | |
| font-size:16px;"> | |
| 📝 Paper | |
| </a> | |
| <a href="https://github.com/sanjari-orb/warc-bench" style=" | |
| display:inline-block; | |
| padding:8px 24px; | |
| background:#2b2b2b; | |
| color:#ffffff; | |
| border-radius:36px; | |
| text-decoration:none; | |
| font-weight:600; | |
| font-size:16px;"> | |
| 💻 Code | |
| </a> | |
| </div> | |
| # Introduction | |
| ActIO-UI-7B-SFT is a model trained for web GUI subtask execution. | |
| We introduce it in the paper [WARC-Bench: Web Archive based Benchmark for GUI Subtask Executions](https://arxiv.org/abs/2510.09872). | |
| Its base model is [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct). | |
| We define a GUI subtask as a short-horizon web interaction task that correspond to simple natural language instructions within a larger web browsing workflow. | |
| Some examples of subtasks include choosing the correct date in a date picker or scrolling in a container to extract information. | |
| ActIO-UI-7B-SFT achieves state-of-the-art (SOTA) results for open-source models on WARC-Bench, our GUI subtask benchmark. | |
| It also exhibits improved long-horizon GUI task and grounding capabilities when compared with its base model. We provide a performance summary of the ActIO-UI model family below. | |
| <div align="center"> | |
| | **Model** | **WARC-Bench (test split)** | **WebArena (no map)** | **Miniwob++** | **ScreenSpot V2** | | |
| |------------------------|------------------------:|----------------------:|--------------:|------------------:| | |
| | ActIO-UI-7B-SFT | 27.33 % | 13.40 % | 29.60 % | 80.03 % | | |
| | ActIO-UI-7B-RLVR | 29.17 % | 7.31 % | 36.27 % | 75.81 % | | |
| | ActIO-UI-72B-SFT | 48.33 % | 23.05 % | 45.87 % | 84.12 % | | |
| | ActIO-UI-72B-RLVR | 52.33 % | 26.80 % | 59.20 % | 82.44 % | | |
| </div> | |
| ActIO-UI is developed by [Orby AI](https://www.orby.ai/), a [Uniphore](https://www.uniphore.com/) company. Please direct all correspondence to [Sanjari Srivastava](mailto:sanjari.srivastava@uniphore.com) and [Peng Qi](mailto:peng.qi@uniphore.com) (first_name.last_name at uniphore.com). | |
| # Model Family | |
| - [ActIO-UI-7B-SFT](https://huggingface.co/Uniphore/actio-ui-7b-sft): a 7B model trained with supervised finetuning (SFT) using distilled subtask data. | |
| - [ActIO-UI-7B-RLVR](https://huggingface.co/Uniphore/actio-ui-7b-rlvr): a 7B model trained with Reinforcement Learning with Verifiable Rewards (RLVR) over the ActIO-UI-7B-SFT checkpoint. | |
| - ActIO-UI-72B-SFT (private due to Qwen licensing restrictions): a 72B model trained with SFT using distilled subtask data. | |
| - ActIO-UI-72B-RLVR (private due to Qwen licensing restrictions): a 72B model trained with RLVR over the ActIO-UI-72B-SFT checkpoint. | |
| # Performance | |
| ## GUI Subtask (WARC-Bench) | |
| ActIO-UI models are specifically trained to solve GUI subtask problems. Both the 7B and 72B ActIO-UI RLVR models achieves SOTA performance for their respective sub-categories of 7B or 72B open-source models. | |
| <div align="center"> | |
| | **Model** | **Dev [synthetic]** | **Dev [real]** | **Dev [total]** | **Test** | | |
| |---|---:|---:|---:|---:| | |
| | _Closed-source_ | | | | | | |
| | OpenAI computer-use-preview *(2025-03-11)*<sup>CUA</sup> | 62.17 | 49.44 | 58.96 | 33.83 | | |
| | GPT-4o *(2024-11-20)* | 7.87 | 14.51 | 9.54 | 9.17 | | |
| | GPT-5 *(2025-08-07)* | 72.66 | 61.67 | 69.89 | 51.33 | | |
| | Claude Sonnet 4.0 *(2025-05-14)*<sup>CUA</sup> | 79.92 | 76.11 | 78.96 | 47.17 | | |
| | Claude Sonnet 3.7 *(2025-02-19)* | 82.96 | 78.89 | 81.93 | 59.83 | | |
| | Claude Sonnet 4.0 *(2025-05-14)* | <u>84.27</u> | <u>**81.67**</u> | <u>83.61</u> | <u>**64.83**</u> | | |
| | _Open-source — Small_ | | | | | | |
| | Qwen2.5-VL 7B | 16.85 | 11.67 | 15.54 | 4.67 | | |
| | UI-Tars 1.5 7B<sup>CUA</sup> | 44.01 | 26.55 | 39.66 | 10.33 | | |
| | OpenCUA 7B<sup>CUA*</sup> | 48.03 | 41.67 | 46.43 | 14.00 | | |
| | **ActIO-UI-7B-SFT** | 70.60 | <u>54.49</u> | 66.54 | 27.33 | | |
| | **ActIO-UI-7B-RLVR** | <u>78.09</u> | 54.44 | <u>72.13</u> | <u>29.17</u> | | |
| | _Open-source — Large_ | | | | | | |
| | OpenCUA 32B<sup>CUA*</sup> | 51.12 | 41.67 | 48.74 | 17.50 | | |
| | Qwen2.5-VL 72B | 64.23 | 51.67 | 61.06 | 37.33 | | |
| | **ActIO-UI-72B-SFT** | 78.23 | 68.89 | 75.88 | 48.33 | | |
| | **ActIO-UI-72B-RLVR** | <u>**87.64**</u> | <u>78.33</u> | <u>**84.31**</u> | <u>52.33</u> | | |
| <sub>Trajectory-level success rates on WARC-Bench. Small VLMs (7B params) are grouped under “Open-source — Small”. Results are divided into closed (top) vs. open-source (bottom). CUA = evaluated with provider’s computer-use agent; others use our Subtask Vision Agent (SVA) design. Rows marked with <sup>*</sup> denote averages across fewer than 3 runs; all others are averages of 3 runs. <strong>Bold</strong> = best per benchmark. <u>Underline</u> = best inside its sector (closed; open-source small; open-source large).</sub> | |
| </div> | |
| ## Other Benchmarks | |
| To access generalizability of GUI subtask execution as a model capability, we compare the performance of ActIO-UI over GUI subtasks (WARC-Bench), long-horizon tasks (WebArena), short-horizon tasks (Miniwob++), and GUI visual grounding (ScreenSpot V2). Without access to any long-horizon and grounding data in its training dataset, our models show improved performance over their base models (except for the grounding performance when compared to Qwen 2.5 VL 72B). | |
| <div align="center"> | |
| | **Model** | **WARC-Bench (test split)** | **WebArena (no map)** | **Miniwob++** | **ScreenSpot V2** | | |
| |------------------------|------------------------:|----------------------:|--------------:|------------------:| | |
| | _Public Models_ | | | | | | |
| | Qwen 2.5 VL 7B | 4.67 % | 3.07 % | 12.53 % | 51.62 % | | |
| | Qwen 2.5 VL 72B | 37.33 % | 15.68 % | 53.87 % | **88.05 %** | | |
| | GPT-5 *(2025-08-07)* | 51.33 % | 34.06 % | 52.27 % | 26.39 % | | |
| | Claude 4 Sonnet | **64.83 %** | **37.96 %** | **71.73 %** | 85.06 % | | |
| | _Ours_ | | | | | | |
| | **ActIO-UI-7B-SFT** | 27.33 % | 13.40 % | 29.60 % | 80.03 % | | |
| | **ActIO-UI-7B-RLVR** | 29.17 % | 7.31 % | 36.27 % | 75.81 % | | |
| | **ActIO-UI-72B-SFT** | 48.33 % | 23.05 % | 45.87 % | 84.12 % | | |
| | **ActIO-UI-72B-RLVR** | 52.33 % | 26.80 % | 59.20 % | 82.44 % | | |
| <sub>Each number is an average of 3 runs. **Bold** = best per benchmark. We omit the OpenStreetMap portion of the WebArena benchmark due to technical difficulties with the online map service. For Screenspot V2, we limit the agent action space to \texttt{click(...)} only. For each evaluation, we use the same prompt format built inside our Subtask Vision Agent</sub> | |
| </div> | |
| # Usage | |
| ## Image Input Size | |
| To maintain optimal model performance, each input image should be set at **1280 (pixel width) \\(\times\\) 720 (pixel height)**. | |
| ## Setup | |
| To run the code snippets below, we recommend that you install everything in `requirements.txt` in a python environment. | |
| ```bash | |
| python -m venv ./venv | |
| source venv/bin/activate | |
| pip install -r requirements.txt | |
| ``` | |
| ## Sanity test | |
| You can make an inference call to the model with the `sanity.py` file included in this repository. | |
| ```{bash} | |
| python sanity.py | |
| ``` | |
| Note that this is only a sanity test for ensuring model is working properly. | |
| For replicating the evaluation result or using the model for your own project, please refer to our code repository on [GitHub](https://github.com/sanjari-orb/warc-bench). | |
| # Legal | |
| ## License | |
| This project is licensed under the Open Model, Data, & Weights License Agreement (OpenMDW). See the LICENSE file in the root folder for details. | |
| The authors, contributors, and copyright holders are not responsible for any illegal, unethical, or harmful use of the Software, nor for any direct or indirect damages resulting from such use. | |
| Use of the name, logo, or trademarks of "ActIO", "ActIO-UI" "WARC-Bench", or "Uniphore" does not imply any endorsement or affiliation unless separate written permission is obtained. | |
| Users are solely responsible for ensuring their use complies with applicable laws and regulations. | |
| ## Value Statement | |
| The model should not be used for any purpose or activity that violates applicable laws or regulations in any jurisdiction. | |
| Use for illegal, unethical, or harmful activities should be prohibited. | |
| ActIO-UI are intended for research and educational purposes only. | |
| # Citation | |
| If you find our work useful, please cite with | |
| ``` | |
| @misc{srivastava2025warcbenchwebarchivebased, | |
| title={WARC-Bench: Web Archive Based Benchmark for GUI Subtask Executions}, | |
| author={Sanjari Srivastava and Gang Li and Cheng Chang and Rishu Garg and Manpreet Kaur and Charlene Y. Lee and Yuezhang Li and Yining Mao and Ignacio Cases and Yanan Xie and Peng Qi}, | |
| year={2025}, | |
| eprint={2510.09872}, | |
| archivePrefix={arXiv}, | |
| primaryClass={cs.LG}, | |
| url={https://arxiv.org/abs/2510.09872}, | |
| } | |
| ``` | |