Discussions

Ask a Question
Back to All

the same text but return the different vectors

we called the same text "hello" but give different result on index : 0. Is it expected?
curl --location --request POST 'https://api.voyageai.com/v1/embeddings'
--header 'Authorization: Bearer --'
--header 'Content-Type: application/json'
--data-raw '{
"model":"voyage-large-2",
"input":["hello"]
}'

curl --location --request POST 'https://api.voyageai.com/v1/embeddings'
--header 'Authorization: Bearer --'
--header 'Content-Type: application/json'
--data-raw '{
"model":"voyage-large-2",
"input":["hello", "nice to meet you"]
}'