Enum Class ModelType

java.lang.Object
java.lang.Enum<ModelType>
chat.octet.model.enums.ModelType
All Implemented Interfaces:
Serializable, Comparable<ModelType>, java.lang.constant.Constable

public enum ModelType extends Enum<ModelType>
Model type
  • Enum Constant Details

    • LLAMA2

      public static final ModelType LLAMA2
    • ALPACA

      public static final ModelType ALPACA
    • VICUNA

      public static final ModelType VICUNA
    • OASST_LLAMA

      public static final ModelType OASST_LLAMA
    • OPEN_BUDDY

      public static final ModelType OPEN_BUDDY
    • REDPAJAMA_INCITE

      public static final ModelType REDPAJAMA_INCITE
    • SNOOZY

      public static final ModelType SNOOZY
    • FALCON

      public static final ModelType FALCON
    • BAICHUAN

      public static final ModelType BAICHUAN
    • AQUILA

      public static final ModelType AQUILA
    • COMMON

      public static final ModelType COMMON
  • Method Details

    • values

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