Instructions to use osunlp/QUEST-30B-SFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use osunlp/QUEST-30B-SFT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="osunlp/QUEST-30B-SFT") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("osunlp/QUEST-30B-SFT") model = AutoModelForCausalLM.from_pretrained("osunlp/QUEST-30B-SFT") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use osunlp/QUEST-30B-SFT with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "osunlp/QUEST-30B-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": "osunlp/QUEST-30B-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/osunlp/QUEST-30B-SFT
- SGLang
How to use osunlp/QUEST-30B-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 "osunlp/QUEST-30B-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": "osunlp/QUEST-30B-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "osunlp/QUEST-30B-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": "osunlp/QUEST-30B-SFT", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use osunlp/QUEST-30B-SFT with Docker Model Runner:
docker model run hf.co/osunlp/QUEST-30B-SFT
README: add benchmark result table from project page
Browse files
README.md
CHANGED
|
@@ -9,7 +9,23 @@ tags:
|
|
| 9 |
|
| 10 |
# QUEST-30B-SFT
|
| 11 |
|
| 12 |
-
**30B**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
## Quick start
|
| 15 |
|
|
@@ -19,14 +35,12 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
| 19 |
model_id = "osunlp/QUEST-30B-SFT"
|
| 20 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 21 |
model = AutoModelForCausalLM.from_pretrained(
|
| 22 |
-
model_id,
|
| 23 |
-
device_map="auto",
|
| 24 |
-
torch_dtype="auto",
|
| 25 |
)
|
| 26 |
```
|
| 27 |
|
| 28 |
-
|
| 29 |
|
| 30 |
## License
|
| 31 |
|
| 32 |
-
|
|
|
|
| 9 |
|
| 10 |
# QUEST-30B-SFT
|
| 11 |
|
| 12 |
+
QUEST **30B** vanilla SFT checkpoint (Qwen3-30B-A3B base, dense).
|
| 13 |
+
|
| 14 |
+
Quantitative results for QUEST-30B (full MT+SFT+RL pipeline) are shown below for reference. SFT-only scores are not separately reported on the project page.
|
| 15 |
+
|
| 16 |
+
## QUEST-30B benchmark results (MT+SFT+RL)
|
| 17 |
+
|
| 18 |
+
| Benchmark | Metric | Score |
|
| 19 |
+
| --- | --- | ---: |
|
| 20 |
+
| BrowseComp | avg@3 | 37.0 |
|
| 21 |
+
| Mind2Web 2 | avg@3 | 28.6 |
|
| 22 |
+
| HLE | avg@3 | 24.6 |
|
| 23 |
+
| DeepResearch Bench | avg@3 | 45.3 |
|
| 24 |
+
| BrowseComp-Plus | avg@3 | 48.2 |
|
| 25 |
+
| WideSearch | Item F1 avg@4 | 54.2 |
|
| 26 |
+
| GAIA | avg@3 | 69.0 |
|
| 27 |
+
| LiveResearchBench | avg@3 | 74.1 |
|
| 28 |
+
> Results from the full QUEST-30B (MT+SFT+RL) run, not this SFT-only checkpoint.
|
| 29 |
|
| 30 |
## Quick start
|
| 31 |
|
|
|
|
| 35 |
model_id = "osunlp/QUEST-30B-SFT"
|
| 36 |
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 37 |
model = AutoModelForCausalLM.from_pretrained(
|
| 38 |
+
model_id, device_map="auto", torch_dtype="auto",
|
|
|
|
|
|
|
| 39 |
)
|
| 40 |
```
|
| 41 |
|
| 42 |
+
Apply the model's chat template with `tokenizer.apply_chat_template(...)` before passing prompts.
|
| 43 |
|
| 44 |
## License
|
| 45 |
|
| 46 |
+
Released under the **Apache License 2.0**.
|