The embedding object
Represents an embedding vector returned by embedding endpoint.
The embedding vector, which is a list of floats. The length of vector depends on the model as listed in the embedding guide.
OBJECT The embedding object
1
2
3
4
5
6
7
8
9
10
{
"object": "embedding",
"embedding": [
0.0023064255,
-0.009327292,
.... (1536 floats total for ada-002)
-0.0028842222,
],
"index": 0
}