Record Class MiniMaxApi.EmbeddingRequest
java.lang.Object
java.lang.Record
org.springframework.ai.minimax.api.MiniMaxApi.EmbeddingRequest
- Record Components:
texts- Input text to embed, encoded as a string or array of tokens.model- ID of the model to use.type- Embedding type.
- Enclosing class:
- MiniMaxApi
public static record MiniMaxApi.EmbeddingRequest(List<String> texts, String model, String type)
extends Record
Creates an embedding vector representing the input text.
-
Constructor Summary
ConstructorsConstructorDescriptionEmbeddingRequest(String text) Create an embedding request with the given input.EmbeddingRequest(String text, String model) Create an embedding request with the given input.EmbeddingRequest(String text, MiniMaxApi.EmbeddingType type) Create an embedding request with the given input.EmbeddingRequest(List<String> texts) Create an embedding request with the given input.EmbeddingRequest(List<String> texts, String model) Create an embedding request with the given input.EmbeddingRequest(List<String> texts, String model, String type) Creates an instance of aEmbeddingRequestrecord class.EmbeddingRequest(List<String> texts, MiniMaxApi.EmbeddingType type) Create an embedding request with the given input. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.model()Returns the value of themodelrecord component.texts()Returns the value of thetextsrecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.
-
Constructor Details
-
EmbeddingRequest
Create an embedding request with the given input. Embedding model is set to 'embo-01'. Embedding type is set to 'db'.- Parameters:
text- Input text to embed.
-
EmbeddingRequest
Create an embedding request with the given input.- Parameters:
text- Input text to embed.model- Embedding model.
-
EmbeddingRequest
Create an embedding request with the given input. Embedding model is set to 'embo-01'.- Parameters:
text- Input text to embed.type- Embedding type.
-
EmbeddingRequest
Create an embedding request with the given input. Embedding model is set to 'embo-01'. Embedding type is set to 'db'.- Parameters:
texts- Input text to embed.
-
EmbeddingRequest
Create an embedding request with the given input. Embedding type is set to 'db'.- Parameters:
texts- Input text to embed.model- Embedding model.
-
EmbeddingRequest
Create an embedding request with the given input. Embedding model is set to 'embo-01'.- Parameters:
texts- Input text to embed.type- Embedding type.
-
EmbeddingRequest
Creates an instance of aEmbeddingRequestrecord class.
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
texts
Returns the value of thetextsrecord component.- Returns:
- the value of the
textsrecord component
-
model
Returns the value of themodelrecord component.- Returns:
- the value of the
modelrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-