{
"model": "qwen-multimodal-embedding-v1",
"input": [
{
"text": "你好啊"
},
{
"image": "https://mitalinlp.oss-cn-hangzhou.aliyuncs.com/dingkun/images/1712648554702.jpg"
}
]
}
curl --location --request POST 'https://api.mindcraft.com.cn/v1/embeddings' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "qwen-multimodal-embedding-v1",
"input": [
{
"text": "你好啊"
},
{
"image": "https://mitalinlp.oss-cn-hangzhou.aliyuncs.com/dingkun/images/1712648554702.jpg"
}
]
}'
{
"id": "bfc7ec0a998148fe889a899e032b91ea",
"model": "qwen-multimodal-embedding-v1",
"usage": {
"duration": 0,
"image_count": 1,
"input_tokens": 5
},
"data": [
{
"embedding": [
-0.035929545760154724,
-0.042329493910074234,
-0.02364613115787506
],
"index": 0,
"type": "text"
},
{
"embedding": [
0.0515291653573513,
0.007719388231635094,
0.02654351107776165
],
"index": 1,
"type": "image"
}
]
}