RedPill
deepseek logo

DeepSeek: R1 0528

GPU TEE
Chat
deepseek/deepseek-r1-0528
Created Nov 28, 2025|164K context|$2.00/M input tokens|$2.00/M output tokens
Intel TDXNVIDIA CC

May 28th update to the original DeepSeek R1 Performance on par with OpenAI o1, but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass.

Providers for DeepSeek: R1 0528

RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

tinfoil logo
tinfoil
Input Price
$2.00
Output Price
$2.00
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-r1-0528",
    "messages": [
      {
        "role": "user",
        "content": "What is the meaning of life?"
      }
    ]
  })
})