Class EmbeddingRequest

java.lang.Object
nl.dannyj.mistral.models.embedding.EmbeddingRequest
All Implemented Interfaces:
Request

public class EmbeddingRequest extends Object implements Request
The EmbeddingRequest class represents a request to create embedding for a list of strings. Most of the field descriptions are taken from the Mistral API documentation.
  • Constructor Details

    • EmbeddingRequest

      public EmbeddingRequest(String model, List<String> input, String encodingFormat)
    • EmbeddingRequest

      public EmbeddingRequest()
  • Method Details

    • builder

    • getModel

      public String getModel()
      The ID of the model to use for this request.
      Returns:
      The model ID.
    • getInput

      public List<String> getInput()
      The list of strings to embed.
      Returns:
      The list of strings to embed.
    • getEncodingFormat

      public String getEncodingFormat()
      The format of the output data.
      Returns:
      The format of the output data.
    • setModel

      public void setModel(String model)
      The ID of the model to use for this request.
      Parameters:
      model - The model ID.
    • setInput

      public void setInput(List<String> input)
      The list of strings to embed.
      Parameters:
      input - The list of strings to embed. Each entry will be embedded separately.
    • setEncodingFormat

      public void setEncodingFormat(String encodingFormat)
      The format of the output data.
      Parameters:
      encodingFormat - The format of the output data. Can only be "float" is valid for now.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • canEqual

      protected boolean canEqual(Object other)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object