Authorization: Bearer ********************{
"model": "MODEL_ID",
"input": [
"第一段文本",
"第二段文本"
]
}curl --location 'https://zhuanqicloud.com/v1/embeddings' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "MODEL_ID",
"input": [
"第一段文本",
"第二段文本"
]
}'{
"object": "list",
"model": "MODEL_ID",
"data": [
{
"object": "embedding",
"index": 0,
"embedding": [
0.1,
0.2
]
}
],
"usage": {
"prompt_tokens": 2,
"total_tokens": 2
}
}