Enum Class FinishReason

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

public enum FinishReason extends Enum<FinishReason>
Token generate status
Author:
William
  • Enum Constant Details

    • FINISHED

      public static final FinishReason FINISHED
      Completed generation.
    • LENGTH

      public static final FinishReason LENGTH
      Generation has exceeded the maximum token limit and has been truncated.
    • STOP

      public static final FinishReason STOP
      Generation stopped by StoppingCriteria.
      See Also:
    • NONE

      public static final FinishReason NONE
      Default type.
    • UNKNOWN

      public static final FinishReason UNKNOWN
      Unknown type, no available token state.
    • TRUNCATED

      public static final FinishReason TRUNCATED
      Generation has exceeded the maximum context limit and has been truncated.
  • Method Details

    • values

      public static FinishReason[] 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 FinishReason 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
    • isFinished

      public boolean isFinished()
      Check if the token has been completed else return false. Finished reason: FINISHED / LENGTH / STOP / TRUNCATED
      Returns:
      boolean