All models
Model card on Hugging Face
DeepSeek R1 Distill
by DeepSeek
Chat
Thinking
DeepSeek R1 Distill is a family of smaller models distilled from DeepSeek R1's reasoning traces onto Qwen and Llama backbones. They bring much of R1's step-by-step reasoning to sizes that run on modest hardware.
- Publisher
- DeepSeek
- Context window
- 128K tokens
- Sizes
- 14B, 1.5B, 32B, 70B, 7B, 8B
- Licence
- MIT
Run DeepSeek R1 Distill
Install it on a Pendra worker, then call it through the OpenAI-compatible API with a pdr_sk_ key.
from pendra import Pendra
client = Pendra(api_key="pdr_sk_...")
response = client.chat.completions.create(
model="deepseek-r1-distill-qwen:14b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
Run DeepSeek R1 Distill on your own UK infrastructure
Deploy a worker, install DeepSeek R1 Distill, and start serving it through one sovereign API endpoint.