Package smile.llm

Enum Class FinishReason

All Implemented Interfaces:
Serializable, Comparable<FinishReason>, Constable

public enum FinishReason extends Enum<FinishReason>
The reasons that the chat completions finish.
  • Enum Constant Details

    • stop

      public static final FinishReason stop
      A message terminated by one of the stop tokens.
    • length

      public static final FinishReason length
      Incomplete model output due to token limit.
    • function_call

      public static final FinishReason function_call
      The model decided to call a function.
    • content_filter

      public static final FinishReason content_filter
      Omitted content due to a flag from content filters.
  • 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