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 Details

    • EmbeddingRequest

      public EmbeddingRequest(String text)
      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

      public EmbeddingRequest(String text, String model)
      Create an embedding request with the given input.
      Parameters:
      text - Input text to embed.
      model - Embedding model.
    • EmbeddingRequest

      public EmbeddingRequest(String text, MiniMaxApi.EmbeddingType type)
      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

      public EmbeddingRequest(List<String> texts)
      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

      public EmbeddingRequest(List<String> texts, String model)
      Create an embedding request with the given input. Embedding type is set to 'db'.
      Parameters:
      texts - Input text to embed.
      model - Embedding model.
    • EmbeddingRequest

      public EmbeddingRequest(List<String> texts, MiniMaxApi.EmbeddingType type)
      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

      public EmbeddingRequest(List<String> texts, String model, String type)
      Creates an instance of a EmbeddingRequest record class.
      Parameters:
      texts - the value for the texts record component
      model - the value for the model record component
      type - the value for the type record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • texts

      public List<String> texts()
      Returns the value of the texts record component.
      Returns:
      the value of the texts record component
    • model

      public String model()
      Returns the value of the model record component.
      Returns:
      the value of the model record component
    • type

      public String type()
      Returns the value of the type record component.
      Returns:
      the value of the type record component