Enum Class OpenAiApi.EmbeddingModel
- All Implemented Interfaces:
Serializable
,Comparable<OpenAiApi.EmbeddingModel>
,Constable
- Enclosing class:
- OpenAiApi
OpenAI Embeddings Models:
Embeddings.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMost capable embedding model for both english and non-english tasks.Increased performance over 2nd generation ada embedding model.Most capable 2nd generation embedding model, replacing 16 first generation models. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static OpenAiApi.EmbeddingModel
Returns the enum constant of this class with the specified name.static OpenAiApi.EmbeddingModel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TEXT_EMBEDDING_3_LARGE
Most capable embedding model for both english and non-english tasks. DIMENSION: 3072 -
TEXT_EMBEDDING_3_SMALL
Increased performance over 2nd generation ada embedding model. DIMENSION: 1536 -
TEXT_EMBEDDING_ADA_002
Most capable 2nd generation embedding model, replacing 16 first generation models. DIMENSION: 1536
-
-
Field Details
-
value
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-