{
"input": [
"The food was delicious",
"The waiter was friendly"
],
"model": "text-embedding-3-large",
"encoding_format": "float"
}curl --location --request POST '/embeddings' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": [
"The food was delicious",
"The waiter was friendly"
],
"model": "text-embedding-3-large",
"encoding_format": "float"
}'{}