You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Arctic-MidTool-RL-4B

The final 4B agent from the MidTool recipe: Qwen3-4B-Base → mid-training on MidTool-Mix → tool-use SFT → agentic RL. Start here if you want a model to run, rather than one to train further (Arctic-MidTool-MT-4B is the mid-training checkpoint).

Results

4B model BFCLv3 Overall τ²-Bench Pass@1 MCP-Universe Score
Qwen3-4B (official) 24.27 11.87 16.05
Qwen3-4B-Base + SFT + RL 39.51 13.04 17.65
Arctic-MidTool-RL-4B 54.18 19.96 19.73

Largest gains are on multi-turn BFCL (27.63 vs 19.00) and τ²-Bench retail/airline — the settings that need long-horizon execution and recovery.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "MidTool/Arctic-MidTool-RL-4B"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, dtype="auto", device_map="auto")

messages = [{"role": "user", "content": "What's the weather in Seattle?"}]
inputs = tok.apply_chat_template(messages, tools=my_tools,
                                 add_generation_prompt=True, return_tensors="pt")

Tool calls are emitted in the Qwen3 <tool_call> format; pass your schemas via the tools= argument of the chat template. Thinking mode is disabled in our evaluation setup.

Details

See our paper for the full data, training, and evaluation details.

@article{jiang2026midtool,
  title  = {MidTool: Mid-training Data Synthesis for Agentic Tool Use},
  author = {Jiang, Fengqing and Wang, Yite and Liu, Boyi and Wang, Zhaoyang and
            Xu, Canwen and Yao, Zhewei and Poovendran, Radha and He, Yuxiong},
  year   = {2026}
}
Downloads last month
-
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for MidTool/Arctic-MidTool-RL-4B

Finetuned
(1)
this model