MyDeepseekAPI
  1. Schemas
MyDeepseekAPI
  • Geting Started
  • Chat Completion
    POST
  • Schemas
    • Schemas
      • ErrorResponse
      • ApiKey
      • ChatCompletionResponse
  1. Schemas

ChatCompletionResponse

chat completion

{
    "id": "chatcmpl-...",
    "object": "chat.completion",
    "created": 1677652288,
    "model": "deepseek-v3.2",
    "choices": [
        {
            "index": 0,
            "message": {
                "role": "assistant",
                "content": "你好!"
            },
            "finish_reason": "stop"
        }
    ],
    "usage": {
        "prompt_tokens": 9,
        "completion_tokens": 12,
        "total_tokens": 21
    }
}
Built with