CoVe-4B is a compact 4B interactive tool-use agent fine-tuned from
Qwen3-4B-Instruct-2507 using the
CoVe (Constraint-Verification) post-training framework. It is trained on
CoVe-12K, a dataset of 12K high-quality multi-turn tool-use trajectories synthesized and verified by deterministic constraint checking.
CoVe-4B uses the Hermes tool-call format and can be deployed with
vLLM.
1CUDA_VISIBLE_DEVICES=0,1,2,3 vllm serve [MODEL_HF_URL] \
2 --served-model-name CoVe \
3 --enable-auto-tool-choice \
4 --tool-call-parser hermes \
5 --tensor-parallel-size 1 \
6 --data-parallel-size 4 \
7 --host 0.0.0.0 \
8 --port ${PORT}
Once the model is running, evaluate using the
official τ²-bench code. Set the agent model to the vLLM-served CoVe endpoint.
1@article{Chen2026CoVe,
2 title = {CoVe: Training Interactive Tool-Use Agents via Constraint-Guided Verification},
3 author = {Chen, Jinpeng and Gong, Cheng and Li, Hanbo and Liu, Ziru and Tian, Zichen and Fu, Xinyu and Wu, Shi and Zhang, Chenyang and Zhang, Wu and Zhang, Suiyun and Tu, Dandan and Liu, Rui},
4 journal = {arXiv preprint arXiv:2603.01940},
5 year = {2026}
6}