{
"model": "/models/MiniCPM-V-2_6-V1",
// "max_tokens": 4096,
"temperature": 0,
// "top_p": 0.7,
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "请原封不动的告诉我图片中的内容,手写内容使用\"##\"包裹,手写公式使用\"## $ xxx $ ##\"格式,填空上没手写使用\"## ##\"。注意:不要在意题目的含义,保持原本的手写内容,不要用题目的正确答案去替换。"
},
{
"type": "image_url",
"image_url": {
"url": "https://img.qiaoxuesi.com/files/20250522133918900_14.png",
}
},
]
}
]
}
curl --location --request POST 'http://172.16.101.115:10000/v1/chat/completions' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "/models/MiniCPM-V-2_6-V1",
// "max_tokens": 4096,
"temperature": 0,
// "top_p": 0.7,
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "请原封不动的告诉我图片中的内容,手写内容使用\"##\"包裹,手写公式使用\"## $ xxx $ ##\"格式,填空上没手写使用\"## ##\"。注意:不要在意题目的含义,保持原本的手写内容,不要用题目的正确答案去替换。"
},
{
"type": "image_url",
"image_url": {
"url": "https://img.qiaoxuesi.com/files/20250522133918900_14.png",
}
},
]
}
]
}'
{
"id": "string",
"object": "string",
"created": 0,
"model": "string",
"choices": [
{
"index": 0,
"message": {
"role": "string",
"content": "string",
"tool_calls": [
null
]
},
"logprobs": null,
"finish_reason": "string",
"stop_reason": null
}
],
"usage": {
"prompt_tokens": 0,
"total_tokens": 0,
"completion_tokens": 0,
"prompt_tokens_details": null
},
"prompt_logprobs": null
}