Enum Class WorkersAiEmbeddingModelName

java.lang.Object
java.lang.Enum<WorkersAiEmbeddingModelName>
dev.langchain4j.model.workersai.WorkersAiEmbeddingModelName
All Implemented Interfaces:
Serializable, Comparable<WorkersAiEmbeddingModelName>, Constable

public enum WorkersAiEmbeddingModelName extends Enum<WorkersAiEmbeddingModelName>
Enum for Workers AI Embedding Model Name.
  • Enum Constant Details

    • BAAI_EMBEDDING_SMALL

      public static final WorkersAiEmbeddingModelName BAAI_EMBEDDING_SMALL
      BAAI general embedding (bge) models transform any given text into a compact vector.
    • BAAI_EMBEDDING_BASE

      public static final WorkersAiEmbeddingModelName BAAI_EMBEDDING_BASE
      BAAI general embedding (bge) models transform any given text into a compact vector.
    • BAAI_EMBEDDING_LARGE

      public static final WorkersAiEmbeddingModelName BAAI_EMBEDDING_LARGE
      BAAI general embedding (bge) models transform any given text into a compact vector.
  • Method Details

    • values

      public static WorkersAiEmbeddingModelName[] 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

      public static WorkersAiEmbeddingModelName valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<WorkersAiEmbeddingModelName>