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
ConstructorDescriptionEmbeddingRequest
(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 aEmbeddingRequest
record class.EmbeddingRequest
(List<String> texts, MiniMaxApi.EmbeddingType type) Create an embedding request with the given input. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.model()
Returns the value of themodel
record component.texts()
Returns the value of thetexts
record component.final String
toString()
Returns a string representation of this record class.type()
Returns the value of thetype
record 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 aEmbeddingRequest
record 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 thetexts
record component.- Returns:
- the value of the
texts
record component
-
model
Returns the value of themodel
record component.- Returns:
- the value of the
model
record component
-
type
Returns the value of thetype
record component.- Returns:
- the value of the
type
record component
-