curl --location 'https://ark.cn-beijing.volces.com/api/v3/chat/completions?ask=%E6%89%80%E6%9C%89%E5%93%BA%E4%B9%B3%E5%8A%A8%E7%89%A9' \
--header 'Authorization: Bearer {{ARK_API_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
"model": "ep-20240607092512-c5wnh",
"messages": [
{"role": "system","content": "你是豆包,是由字节跳动开发的 AI 人工智能助手."},
{"role": "user","content": "{{ask}}" }
]
}'{
"choices": [
{
"finish_reason": "string",
"index": 0,
"logprobs": {
"content": null
},
"message": {
"content": "string",
"role": "string"
}
}
],
"created": 0,
"id": "string",
"model": "string",
"object": "string",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 0,
"total_tokens": 0
}
}