How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="sxiong/DeepControl-Qwen2.5-7B")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("sxiong/DeepControl-Qwen2.5-7B")
model = AutoModelForCausalLM.from_pretrained("sxiong/DeepControl-Qwen2.5-7B", device_map="auto")
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]:]))
Quick Links

DeepControl-Qwen2.5-7B

Deep search agent checkpoint from Qwen2.5-7B-Instruct under Adaptive Information Control for Search-Augmented LLM Reasoning (EMNLP 2026).

Quick start

See our repo DeepControl for more details.

Recommended Configuration:

Setting Value
Inference dtype BF16
Context length 8,192
Generation temperature 0
Maximum new tokens per action 512
Maximum agent turns 8
Retrieval top-k 5
Retrieval corpus Wikipedia 2018 (wiki18)

For example, the model server can be started with:

vllm serve sxiong/DeepControl-Qwen2.5-7B \
  --dtype bfloat16 \
  --max-model-len 8192

Loading the model alone does not provide retrieval. It requires the DeepControl system prompt, action parser, and wiki18 corpus.

Citation

@article{xiong2026adaptive,
  title={Adaptive Information Control for Search-Augmented LLM Reasoning},
  author={Xiong, Siheng and Gungordu, Oguzhan and Kerce, James C and Fekri, Faramarz},
  journal={arXiv preprint arXiv:2602.01672},
  year={2026}
}
Downloads last month
168
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for sxiong/DeepControl-Qwen2.5-7B

Base model

Qwen/Qwen2.5-7B
Finetuned
(3114)
this model
Quantizations
1 model

Collection including sxiong/DeepControl-Qwen2.5-7B

Paper for sxiong/DeepControl-Qwen2.5-7B