QUEST
Collection
14 items • Updated
QUEST 4B SFT model — general-purpose deep research agent (Qwen3.5 family, dense).
| Benchmark | Metric | Score |
|---|---|---|
| BrowseComp | avg@3 | 40.0 |
| Mind2Web 2 | avg@3 | 24.3 |
| HLE | avg@3 | 36.2 |
| DeepResearch Bench | avg@3 | 22.0 |
| BrowseComp-Plus | avg@3 | 52.1 |
| WideSearch | Item F1 avg@4 | 55.0 |
| GAIA | avg@3 | 77.7 |
| LiveResearchBench | avg@3 | 62.1 |
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "osunlp/QUEST-4B"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id, device_map="auto", torch_dtype="auto",
)
Apply the model's chat template with tokenizer.apply_chat_template(...) before passing prompts.
Released under the Apache License 2.0.