---
license: apache-2.0
pipeline_tag: text-generation
library_name: transformers
---
#
Apsara-Reason: Distribution-Aligned Sequence Distillation Enabling Superior Long-CoT Reasoning
[](https://github.com/D2I-ai/apsara-reason)
[](https://huggingface.co/Alibaba-Apsara/Apsara-Reason-4B)
[](https://www.modelscope.cn/models/Alibaba-Apsara/Apsara-Reason-4B)
[](https://huggingface.co/Alibaba-Apsara/Alibaba-Apsara/Apsara-Reason-30B-A3B-Preview)
[](https://www.modelscope.cn/models/Alibaba-Apsara/Apsara-Reason-30B-A3B-Preview)
[](https://huggingface.co/datasets/Alibaba-Apsara/Apsara-Reason-v1-SFT)
[](https://www.modelscope.cn/datasets/Alibaba-Apsara/Apsara-Reason-v1-SFT)
## 🚀 Introduction
We release Apsara-Reason-30B-A3B-Preview, a highly capable 30B Mixture-of-Experts (MoE) language model specialized in long chain-of-thought (Long-CoT) reasoning across mathematics, code generation, and scientific reasoning. Apsara-Reason-30B-A3B-Preview is post-trained from **Qwen3-30B-A3B-Instruct-2507** (non-thinking student) and distilled from **gpt-oss-120b** (teacher) via our distribution-aligned sequence distillation pipeline.
> Note1: To demonstrate the scalability and efficiency of our data recipe, this preview model was trained only on the first-stage (Low-Temperature) dataset (~105K samples) derived from our 4B pipeline, without any re-curation or additional RL. Even with this lightweight recipe, it achieves excellent performance among open MoE models.
> Note2: This model (Apsara-Reason-30B-A3B-Preview) is a preliminary research artifact trained only on the first stage (Low-Temperature Sampling) of our pipeline to demonstrate the scalability of our data recipe. For the fully trained model and complete methodology, please refer to [Apsara-Reason-4B](https://huggingface.co/Alibaba-Apsara/Apsara-Reason-4B) and our Technical Report.
---
## ⚡ Quick Start
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "Alibaba-Apsara/Apsara-Reason-30B-A3B-Preview"
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto",
trust_remote_code=True,
)
prompt = "Natalia sold clips to 48 of her friends in April, and then she sold half as many clips in May. How many clips did Natalia sell altogether in April and May?"
messages = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
generated_ids = model.generate(
**model_inputs,
max_new_tokens=81920,
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
content = tokenizer.decode(output_ids, skip_special_tokens=True)
print(content)
```
> Note: We include the system prompt, as it was used during all training stages. To ensure consistent output quality, we recommend including the same system prompt during actual usage; otherwise, the model's responses may be affected.
For deployment, you can use sglang>=0.4.6.post1 or vllm>=0.8.5 or to create an OpenAI-compatible API endpoint:
- SGLang:
```
python -m sglang.launch_server --model-path Alibaba-Apsara/Apsara-Reason-30B-A3B-Preview --context-length 262144
```
- vLLM:
```
vllm serve Alibaba-Apsara/Apsara-Reason-30B-A3B-Preview --max-model-len 262144
```
## đź’ˇBest Practices
To achieve optimal performance, we suggest using **Temperature=1.0, TopP=1.0**.
## 📜 Licence
The model weights are licensed under Apache 2.0 License.
## ⚠️ Limitation
While Apsara-Reason-30B-A3B-Preview demonstrates remarkable performance across mathematical, scientific, and coding benchmarks, **it is currently limited by the absence of tool integration and function calling capabilities.** Operating strictly within the text space, the model cannot interact with external interfaces such as code executors or APIs, which constrains its utility in agent-based workflows; however, future iterations aim to bridge this gap by integrating capabilities like knowledge retrieval and tool invocation to support more complex, interactive reasoning tasks.
## 📚 Citation
Apsara-Reason is developed by Alibaba Cloud, as part of our mission to advance open, efficient, and trustworthy reasoning systems. If you find this work useful in your research or applications, please cite our technical report (coming soon).
We welcome collaboration, feedback, and community contributions to push the boundaries of what small models can reason about—transparently and responsibly.