curl --location --request POST 'https://ark.cn-beijing.volces.com/api/v3/embeddings' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "doubao-embedding-text-240515",
"input": ["天很蓝", "海很深"]
}'
{
"id": "021718067849899d92fcbe0865fdffdde********************",
"created": 171806****,
"object": "list",
"model": "doubao-embedding-text-240515",
"data": [
{
"index": 0,
"object": "embedding",
"embedding": [2.372908353805542,1.897201418876648,...,1.3692127466201782]
}
],
"usage": {
"prompt_tokens": 7,
"total_tokens": 7
}
}