Views
No views yet
mlx-vlm and validated locally with both mlx_vlm prompt-packet checks and vllm-mlx OpenAI-compatible serve checks.| Field | Value |
|---|---|
| Upstream model | Tongyi-MAI/MAI-UI-2B |
| Artifact type | bf16 MLX conversion |
| Conversion tool | mlx_vlm.convert via mlx-vlm 0.3.12 |
| Python | 3.11.14 |
| MLX | 0.31.0 |
| Transformers | 5.2.0 |
| Validation backend | vllm-mlx (phase/p1 @ 48b51ed) |
| Quantization | bf16 |
| Group size | n/a |
| Quantization mode | n/a |
| Artifact size | 4.0G |
| Template repair | tokenizer_config.json["chat_template"] was re-injected from chat_template.jinja after conversion |
vllm-mlx multimodal detection compatibility.processor_config.json and video_preprocessor_config.json are present at repo root.mlx-community/MAI-UI-2B-bf16 line for clean serving-path and benchmark use.mlx_vlm prompt-packet validation: PASSvllm-mlx OpenAI-compatible serve validation: PASS2B lineAPI Host target4.0Gmlx_vlm validation used about 5.29 GB average peak memory469-608 prompt tok/s and 2.5-15.2 generation tok/s across the four validation promptspip install -U mlx-vlm1python -m mlx_vlm.generate \
2 --model mlx-community/MAI-UI-2B-bf16-v2 \
3 --image path/to/image.png \
4 --prompt "Describe the visible controls on this screen." \
5 --max-tokens 256 \
6 --temperature 0.01from mlx_vlm import load, generate
2
3model, processor = load("mlx-community/MAI-UI-2B-bf16-v2")
4result = generate(
5 model,
6 processor,
7 prompt="Describe the visible controls on this screen.",
8 image="path/to/image.png",
9 max_tokens=256,
10 temp=0.0,
11)
12print(result.text)python -m vllm_mlx.cli serve mlx-community/MAI-UI-2B-bf16-v2 --mllm --localhost --port 80004bit was evaluated locally and rejected after runtime validationbf16 artifact is the local reference artifact for the accepted 6bit variant in Track C.2B repos are uploaded.1@misc{zhou2025maiuitechnicalreportrealworld,
2 title={MAI-UI Technical Report: Real-World Centric Foundation GUI Agents},
3 author={Hanzhang Zhou and Xu Zhang and Panrong Tong and Jianan Zhang and Liangyu Chen and Quyu Kong and Chenglin Cai and Chen Liu and Yue Wang and Jingren Zhou and Steven Hoi},
4 year={2025},
5 eprint={2512.22047},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={https://arxiv.org/abs/2512.22047},
9}