Authorization: Bearer ********************
{
"model": "deepseek2.5",
"messages": [
{
"role": "user",
"content": "你是谁?"
}
],
"stream": false
}
curl --location --request POST 'https://api.ecovai.cn/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "deepseek2.5",
"messages": [
{
"role": "user",
"content": "你是谁?"
}
],
"stream": false
}'
{
"id": "",
"model": "deepseek_chat",
"object": "chat.completion",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "我是DeepSeek Chat,一个由深度求索公司开发的智能助手,旨在通过自然语言处理和机器学习技术来提供信息查询、对话交流和解答问题等服务。"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 1,
"completion_tokens": 1,
"total_tokens": 2
},
"created": 1730347121
}