DeepSeek: R1 0528

由 DeepSeek 提供

May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass. Fully open-source model.

支持流式输出最大 33K tokens

模型特性

支持的功能

  • Ultra-long Context
  • Instruction-tuned

输入模态

  • text

模型参数

最大 Tokens:33K
默认温度:0.7
流式输出:支持

定价信息

积分定价

文本输入:332 积分
图片输入:0 积分
消息输出:0 积分

API 定价

输入价格:$0.500/1K tokens
输出价格:$2.150/1K tokens

使用示例

API 调用示例
curl -X POST "https://chatsking.com/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "deepseek-r1-0528",
    "messages": [
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    "max_tokens": 1000,
    "temperature": 0.7
  }'