curl https://ai.kaiho.cc/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gpt-4o",
"messages": [
{
"role": "user",
"content": "画一个流程图,展示用户注册的过程"
}
],
"response_format": {
"type": "multimodal"
}
}'