Package com.openai.models
Class Embedding
-
- All Implemented Interfaces:
public final class EmbeddingRepresents an embedding vector returned by embedding endpoint.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classEmbedding.BuilderA builder for Embedding.
-
Method Summary
Modifier and Type Method Description final List<Double>embedding()The embedding vector, which is a list of floats. final Longindex()The index of the embedding in the list of embeddings. final JsonValue_object_()The object type, which is always "embedding". final JsonField<List<Double>>_embedding()The embedding vector, which is a list of floats. final JsonField<Long>_index()The index of the embedding in the list of embeddings. final Map<String, JsonValue>_additionalProperties()final Embeddingvalidate()final Embedding.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Embedding.Builderbuilder()-
-
Method Detail
-
embedding
final List<Double> embedding()
The embedding vector, which is a list of floats. The length of vector depends on the model as listed in the embedding guide.
-
_embedding
final JsonField<List<Double>> _embedding()
The embedding vector, which is a list of floats. The length of vector depends on the model as listed in the embedding guide.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final Embedding.Builder toBuilder()
-
builder
final static Embedding.Builder builder()
-
-
-
-