Authorization: Bearer ********************
{
"model": "text-embedding-3-large",
"input": "The food was delicious and the waiter..."
}
curl --location --request POST 'https://api.ecovai.cn/v1/embeddings' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "text-embedding-3-large",
"input": "The food was delicious and the waiter..."
}'
{
"object": "string",
"data": [
{
"object": "string",
"embedding": [
0
],
"index": 0
}
],
"model": "string",
"usage": {
"prompt_tokens": 0,
"total_tokens": 0
}
}