Enum Class VertexAiMultimodalEmbeddingModelName
java.lang.Object
java.lang.Enum<VertexAiMultimodalEmbeddingModelName>
org.springframework.ai.vertexai.embedding.multimodal.VertexAiMultimodalEmbeddingModelName
- All Implemented Interfaces:
Serializable
,Comparable<VertexAiMultimodalEmbeddingModelName>
,Constable
,EmbeddingModelDescription
,ModelDescription
public enum VertexAiMultimodalEmbeddingModelName
extends Enum<VertexAiMultimodalEmbeddingModelName>
implements EmbeddingModelDescription
VertexAI Embedding Models: - Text
embeddings - Multimodal
embeddings
- Since:
- 1.0.0
- Author:
- Christian Tzolov
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the model.int
getName()
Returns the name of the model.Returns the version of the model.Returns the enum constant of this class with the specified name.static VertexAiMultimodalEmbeddingModelName[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MULTIMODAL_EMBEDDING_001
Multimodal model.Expires on May 14, 2025.
-
-
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
-
getName
Description copied from interface:ModelDescription
Returns the name of the model.- Specified by:
getName
in interfaceModelDescription
- Returns:
- the name of the model
-
getVersion
Description copied from interface:ModelDescription
Returns the version of the model.- Specified by:
getVersion
in interfaceModelDescription
- Returns:
- the version of the model
-
getDimensions
public int getDimensions()- Specified by:
getDimensions
in interfaceEmbeddingModelDescription
-
getDescription
Description copied from interface:ModelDescription
Returns the description of the model.- Specified by:
getDescription
in interfaceModelDescription
- Returns:
- the description of the model
-