{
"model": "模型名称",
"messages": [
{
"role": "角色 不支持 system角色",
"content": "提问消息"
}
],
"stream": false,
"max_completion_tokens": 0
}curl --location --request POST '/v1/chat/completions' \
--header 'Authorization: Bearer {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "模型名称",
"messages": [
{
"role": "角色 不支持 system角色",
"content": "提问消息"
}
],
"stream": false,
"max_completion_tokens": 0
}'{}