QUEST
Collection
14 items • Updated
QUEST 9B SFT model — general-purpose deep research agent (Qwen3.5 family, dense).
| Benchmark | Metric | Score |
|---|---|---|
| BrowseComp | avg@3 | 45.4 |
| Mind2Web 2 | avg@3 | 24.4 |
| HLE | avg@3 | 36.9 |
| DeepResearch Bench | avg@3 | 32.6 |
| BrowseComp-Plus | avg@3 | 55.6 |
| WideSearch | Item F1 avg@4 | 58.5 |
| GAIA | avg@3 | 78.6 |
| LiveResearchBench | avg@3 | 63.5 |
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "osunlp/QUEST-9B"
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.