curl https://api.eye-ai.com/v1/embeddings \
-X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input": "The food was delicious and the waiter...",
"model": "text-similarity-babbage-001"}'
{
"model": "text-similarity-babbage-001",
"input": "The food was delicious and the waiter..."
}
{
"object": "list",
"data": [
{
"object": "embedding",
"embedding": [
0.018990106880664825,
-0.0073809814639389515,
.... (1024 floats total for ada)
0.021276434883475304,
],
"index": 0
}
],
"usage": {
"prompt_tokens": 8,
"total_tokens": 8
}
}