DeepSeek V3.1
GPU TEE
deepseek/deepseek-chat-v3.1
Created Nov 28, 2025|164K context|$1.00/M input tokens|$2.50/M output tokens
Intel TDXNVIDIA CC
DeepSeek-V3.1 is a large hybrid reasoning model (671B parameters, 37B active) that supports both thinking and non-thinking modes via prompt templates. It extends the DeepSeek-V3 base with a two-phase long-context training process, reaching up to 128K tokens, and uses FP8 microscaling for efficient inference.
Providers for DeepSeek V3.1
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
phala
Input Price
$1.00
Output Price
$2.50
Total Context
164K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "deepseek/deepseek-chat-v3.1",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})