Views
No views yet
Qwen3_5MoeForConditionalGeneration) 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.1python3 -m sglang.launch_server \
2 --model-path Minbyul/AgentMercury-Qwen3.5-35B-A3B \
3 --served-model-name agentmercury-qwen3.5-35b-a3b \
4 --host 0.0.0.0 --port 30000 --tp-size 1 \
5 --context-length 131072 --mem-fraction-static 0.85 \
6 --moe-runner-backend triton --attention-backend triton \
7 --reasoning-parser qwen3 --tool-call-parser qwen3_coder \
8 --trust-remote-codehttp://localhost:30000/v1 (supports tool calls).Serve with at least a 128K context window. Like its base model, this checkpoint thinks before it answers; a short context window truncates generations inside the reasoning block and turns them into empty responses, which silently degrades any downstream score.
1from transformers import AutoModelForCausalLM, AutoProcessor
2model = AutoModelForCausalLM.from_pretrained(
3 "Minbyul/AgentMercury-Qwen3.5-35B-A3B",
4 torch_dtype="bfloat16", device_map="auto", trust_remote_code=True,
5)
6processor = AutoProcessor.from_pretrained(
7 "Minbyul/AgentMercury-Qwen3.5-35B-A3B", trust_remote_code=True,
8)LICENSE).