DeepSeek: DeepSeek V3 0324

由 DeepSeek 提供

DeepSeek V3, a 685B-parameter, mixture-of-experts model, is the latest iteration of the flagship chat model family from the DeepSeek team. It succeeds the [DeepSeek V3](/deepseek/deepseek-chat-v3) model and performs really well on a variety of tasks.

支持流式输出最大 164K tokens

模型特性

输入模态

  • text

模型参数

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

定价信息

积分定价

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

API 定价

输入价格:$0.280/1K tokens
输出价格:$0.880/1K tokens

使用示例

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