DeepSeekPaidOperational
DeepSeek R1 Distill Qwen 7b
API model name: deepseek-r1-distill-qwen-7b
DeepSeek R1 Distill Qwen 7b is DeepSeek's chat model, served on the Api.Airforce unified API. Capabilities include Reasoning. It is priced at $0.07 per million input tokens and $0.13 per million output tokens. Access it through the OpenAI-compatible API with one key, alongside 100+ other models on Api.Airforce.
Pricing
Specifications
- Provider
- DeepSeek
- Type
- chat model
Capabilities
Reasoning
What is DeepSeek R1 Distill Qwen 7b used for?
- Chatbots & assistants — conversational AI, drafting, summarizing and Q&A.
- Complex reasoning — math, coding and step-by-step problem solving.
DeepSeek R1 Distill Qwen 7b vs. similar models
| Model | Intelligence | Context | Input / 1M | Output / 1M |
|---|---|---|---|---|
| DeepSeek R1 Distill Qwen 7b | — | — | $0.07 | $0.13 |
| [SP]deepseek V4 Flash | — | — | $5.31 | $0.02 |
| [SP]deepseek V4 Pro | — | — | $5.31 | $0.02 |
| DeepSeek | — | 64K | $0.44 | $1.72 |
Prices are Api.Airforce pay-as-you-go rates per 1M tokens. Context is the maximum input length.
Related models
[SP]deepseek V4 FlashDeepSeek · $5.31 / 1M[SP]deepseek V4 ProDeepSeek · $5.31 / 1MDeepSeekDeepSeek · $0.44 / 1MDeepSeek ChatDeepSeek · $0.81 / 1MDeepSeek OcrDeepSeek · $0.07 / 1MDeepSeek R1DeepSeek · $1.29 / 1MDeepSeek R1DeepSeek · $0.57 / 1MDeepSeek R1.01.20DeepSeek · $0.38 / 1MDeepSeek R1DeepSeek · $0.38 / 1MDeepSeek R1DeepSeek · $1.47 / 1MDeepSeek R1 Distill Qwen 32bDeepSeek · $0.26 / 1MDeepSeek ReasonerDeepSeek · $2.47 / 1M
DeepSeek R1 Distill Qwen 7b — frequently asked questions
- How much does DeepSeek R1 Distill Qwen 7b cost?
- DeepSeek R1 Distill Qwen 7b is billed pay-as-you-go at $0.07 per 1M input tokens and $0.13 per 1M output tokens. There is no subscription — you only pay for what you use.
- What can DeepSeek R1 Distill Qwen 7b do?
- DeepSeek R1 Distill Qwen 7b supports Reasoning.
- Is DeepSeek R1 Distill Qwen 7b free to use?
- DeepSeek R1 Distill Qwen 7b is a paid, pay-as-you-go model — no subscription, you are only charged for usage.
- How do I use DeepSeek R1 Distill Qwen 7b via the API?
- DeepSeek R1 Distill Qwen 7b is OpenAI-compatible. Point any OpenAI SDK at https://api.airforce/v1 and pass the model ID deepseek-r1-distill-qwen-7b with your Api.Airforce API key.
- Who makes DeepSeek R1 Distill Qwen 7b?
- DeepSeek R1 Distill Qwen 7b is DeepSeek's chat model, served through the unified Api.Airforce gateway alongside 100+ other models.
Loading live metrics…
Loading live metrics…
Loading live metrics…
Use DeepSeek R1 Distill Qwen 7b via the API
OpenAI-compatible — point any OpenAI SDK at https://api.airforce/v1 and pass deepseek-r1-distill-qwen-7b as the model.
cURL
curl https://api.airforce/v1/chat/completions \
-H "Authorization: Bearer $AIRFORCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-r1-distill-qwen-7b",
"messages": [{ "role": "user", "content": "Hello!" }]
}'Python
from openai import OpenAI
client = OpenAI(base_url="https://api.airforce/v1", api_key="$AIRFORCE_API_KEY")
r = client.chat.completions.create(
model="deepseek-r1-distill-qwen-7b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(r.choices[0].message.content)JavaScript
import OpenAI from "openai";
const client = new OpenAI({ baseURL: "https://api.airforce/v1", apiKey: process.env.AIRFORCE_API_KEY });
const r = await client.chat.completions.create({
model: "deepseek-r1-distill-qwen-7b",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(r.choices[0].message.content);