Authorization: Bearer ********************
{
"model": "gpt-4o-all",
"messages": [
{
"role": "user",
"content": "画一只猫"
}
],
"stream": true
}
curl --location --request POST 'https://api.huiyan-ai.cn/v1/chat/completions' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-4o-all",
"messages": [
{
"role": "user",
"content": "画一只猫"
}
],
"stream": true
}'
{}