curl --location --request POST 'http://dev-cn.your-api-server.com/v1/chat' \
--header 'Authorization: Bearer ${api_key}' \
--header 'X-BC-Request-Id: ${request_id}' \
--header 'X-BC-Timestamp: ${timestamp}' \
--header 'X-BC-Signature: ${signature}' \
--header 'X-BC-Sign-Algo: MD5' \
--header 'Content-Type: application/json' \
--data-raw '{
  "model": "Baichuan2-53B",
  "messages": [
    {
      "role": "user",
      "content": "我日薪8块钱,请问在闰年的二月,我月薪多少"
    }
  ],
  "parameters": {
    "temperature": 0.3,
    "top_k": 10
  }
}'                {
  "code": 0,
  "msg": "success",
  "data": {
    "messages": [
      {
        "role": "assistant",
        "content": "首先,我们需要确定闰年的二月有多少天。闰年的二月有29天。\n\n然后,我们可以计算你的月薪:\n\n日薪 = 月薪 / (当月天数)\n\n所以,你的月薪 = 日薪 * 当月天数\n\n将数值代入公式:\n\n月薪 = 8元/天 * 29天 = 232元\n\n因此,你在闰年的二月的月薪是232元。",
        "finish_reason": "stop"
      }
    ]
  },
  "usage": {
    "prompt_tokens": 17,
    "answer_tokens": 100,
    "total_tokens": 117
  }
}