File size: 2,102 Bytes
9e33bfa 341ce8a 144952c 341ce8a 144952c 341ce8a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | ---
base_model:
- deepseek-ai/DeepSeek-R1-Distill-Qwen-7B
language:
- en
metrics:
- accuracy
library_name: transformers
pipeline_tag: text-generation
tags:
- Reasoning-while-asking
---
# Reasoning While Asking: Proactive Interactive Reasoning (PIR)
This repository contains the weights for the model presented in the paper [Reasoning While Asking: Transforming Reasoning Large Language Models from Passive Solvers to Proactive Inquirers](https://huggingface.co/papers/2601.22139).
- **Code:** [GitHub Repository](https://github.com/SUAT-AIRI/Proactive-Interactive-R1)
## Introduction
Reasoning-oriented Large Language Models (LLMs) often remain limited by a *blind self-thinking* paradigm: performing extensive internal reasoning even when critical information is missing or ambiguous.
**PIR (Proactive Interactive Reasoning)** is a new reasoning paradigm that transforms LLMs from passive solvers into proactive inquirers that interleave reasoning with clarification. PIR-enabled models detect uncertainty during reasoning and actively ask users for clarification before proceeding, reducing hallucinations and misaligned conclusions.
## Demo
Experience the "Reasoning While Asking" capability using the interactive script provided in the [official repository](https://github.com/SUAT-AIRI/Proactive-Interactive-R1):
```bash
python run_demo_interactive_generation.py \
--input_file "verl-tool/datasets/mip/gsm8k.json" \
--model_url "http://localhost:1136" \
--model_name Proactive-Interactive-R1-Math-7B \
--output_dir results/
```
## Citation
If you find this work useful, please cite the paper:
```bibtex
@misc{chen2026reasoningaskingtransformingreasoning,
title={Reasoning While Asking: Transforming Reasoning Large Language Models from Passive Solvers to Proactive Inquirers},
author={Xin Chen and Feng Jiang and Yiqian Zhang and Hardy Chen and Shuo Yan and Wenya Xie and Min Yang and Shujian Huang},
year={2026},
eprint={2601.22139},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2601.22139},
}
``` |