Model reference · open weights
Falcon-H1R is an open-weight language model from tiiuae. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Maker | tiiuae |
|---|---|
| Type | Language models |
| Task | Text gen |
| Runs with | transformers |
| Based on | tiiuae/Falcon-H1-7B-Base |
| Released | 2025-11-28 |
| Popularity | 3k downloads / month |
| Licence | Commercial licence needed |
About
This repository presents Falcon-H1R-7B, a reasoning-specialized model introduced in the paper Falcon-H1R: Pushing the Reasoning Frontiers with a Hybrid Model for Efficient Test-Time Scaling.
Built on top of Falcon-H1-7B-Base, it was trained via cold-start supervised fine-tuning with long reasoning traces and further enhanced by scaling RL with GRPO. The model demonstrates outstanding performance across various benchmark evaluations, including mathematics, programming, instruction following, and general logic.
For more details about the training protocol of this model, please refer to the Falcon-H1R technical blogpost and Technical Report.
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp
cmake -B build
cmake --build build --config Release -t llama-server
./llama-server -m Falcon-H1R-7B-Q8_0.gguf \
--temp 0.6 \
--top-p 0.95 \
-n 65536 \
--jinja
We recommend using a temperature of 0.6 and top-p as 0.95 with max new tokens up to 65536. For supported frameworks, you can adjust the repetition_penalty and presence_penalty parameters to reduce endless repetitions.
Falcon-H1R achieves state of art results in reasoning benchmarks.
TTS represents test time scaling results on few of the benchmarks that we evaluated via DeepConf.
If the Falcon-H1R family of reasoning models is helpful to your work, feel free to give us a cite.
@misc{falcon-h1r,
title={Falcon-H1R: Pushing the Reasoning Frontiers with a Hybrid Model for Efficient Test-Time Scaling},
author={Falcon LLM Team and Iheb Chaabane and Puneesh Khanna and Suhail Mohmad and Slim Frikha and Shi Hu and Abdalgader Abubaker and Reda Alami and Mikhail Lubinets and Mohamed El Amine Seddik and Hakim Hacid},
year={2026},
eprint={2601.02346},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2601.02346},
}
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys falcon-h1r for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (falcon-h1r below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"falcon-h1r","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.