{
"model": "gemini-embedding-exp-03-07",
"input": [
{
"text": "你好啊"
},
{
"text": "你叫什么名字"
}
],
"dimensions": 1024
}
curl --location --request POST 'https://api.mindcraft.com.cn/v1/embeddings' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gemini-embedding-exp-03-07",
"input": [
{
"text": "你好啊"
},
{
"text": "你叫什么名字"
}
],
"dimensions": 1024
}'
{
"id": "f6bfc5224f2e45f3af2e39348d1f2781",
"model": "GLM-Embedding-3",
"usage": {
"completion_tokens": 0,
"prompt_tokens": 13,
"total_tokens": 13
},
"data": [
{
"embedding": [
-0.035929545760154724,
-0.042329493910074234,
-0.02364613115787506
],
"index": 0,
"type": "text"
},
{
"embedding": [
0.0515291653573513,
0.007719388231635094,
0.02654351107776165
],
"index": 1,
"type": "text"
}
]
}