Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.
{
"input": "The food was delicious and the waiter...",
"model": "text-embedding-3-small",
"encoding_format": "float"
}curl --location --request POST 'https://api.goapi.ai/v1/embeddings' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"input": "The food was delicious and the waiter...",
"model": "text-embedding-3-small",
"encoding_format": "float"
}'{}