Views
No views yet
Qwen3_5ForConditionalGeneration)
checkpoint post-trained with agentic reinforcement learning on MCP (Model-Context-Protocol)
tool-use environments. The RL objective rewards completing real multi-turn agent tasks
(correct tool calls, correct final database/environment state), not just producing text.| Benchmark | Base | AgentMercury | Δ |
|---|---|---|---|
| BFCL | 30.35 | 31.93 | +1.58 |
| τ³-bench | 0.706 | 0.747 | +0.041 |
| τ²-bench | 0.448 | 0.457 | +0.009 |
| Benchmark | Base | AgentMercury | Δ |
|---|---|---|---|
| AIME 2026 | 0.459 | 0.553 | +0.094 |
| HMMT 2026-02 | 0.285 | 0.356 | +0.071 |
| GPQA-Diamond | 0.765 | 0.770 | +0.005 |
| Finance-Reasoning | 0.563 | 0.571 | +0.008 |
| AA-Omniscience | −52.17 | −51.67 | +0.50 |
| Benchmark | Base | AgentMercury | Δ |
|---|---|---|---|
| LiveCodeBench (v5+v6) | 0.366 | 0.435 | +0.069 |
| SciCode | 0.226 | 0.260 | +0.034 |
| Benchmark | Base | AgentMercury | Δ |
|---|---|---|---|
| WritingBench | 6.232 | 6.307 | +0.075 |
Metrics use each benchmark's native scale (fractions 0–1, or the benchmark's own points). The largest, most consistent gains are on agentic tool-use (BFCL, τ-bench) and competition math / code (AIME, HMMT, LiveCodeBench).
1python3 -m sglang.launch_server \
2 --model-path Minbyul/AgentMercury-Qwen3.5-4B \
3 --served-model-name agentmercury-qwen3.5-4b \
4 --host 0.0.0.0 --port 30000 --tp 1 \
5 --context-length 32768 \
6 --reasoning-parser qwen3 --tool-call-parser qwen3_coder \
7 --trust-remote-codehttp://localhost:30000/v1 (supports tool calls).1from transformers import AutoModelForCausalLM, AutoProcessor
2model = AutoModelForCausalLM.from_pretrained(
3 "Minbyul/AgentMercury-Qwen3.5-4B",
4 torch_dtype="bfloat16", device_map="auto", trust_remote_code=True,
5)
6processor = AutoProcessor.from_pretrained(
7 "Minbyul/AgentMercury-Qwen3.5-4B", trust_remote_code=True,
8)LICENSE).