本文档由 数眼智能 提供,专注于人工智能行业的API服务商! 扫码入群即可领取免费额度!
curl --location --request POST 'https://api.shuyanai.com/v1beta/models/:generateContent' \
--header 'Authorization: {{Authorization}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"generationConfig": {
"maxOutputTokens": 63000,
"temperature": 1,
"topP": 1,
"thinkingConfig": {
"thinkingBudget": 1760,
"includeThoughts": true
}
},
"contents": [
{
"role": "user",
"parts": [
{
"text": "请帮我分析一下图片中有哪些元素"
},
{
"fileData": {
"mimeType": "image/jpg",
"fileUri": "https://ww3.sinaimg.cn/mw690/0083ssXily8hpug7hm5c0j30k00z643y.jpg"
}
}
]
}
]
}'{}