Package smile.llm
Enum Class FinishReason
- All Implemented Interfaces:
Serializable
,Comparable<FinishReason>
,Constable
The reasons that the chat completions finish.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOmitted content due to a flag from content filters.The model decided to call a function.Incomplete model output due to token limit.A message terminated by one of the stop tokens. -
Method Summary
Modifier and TypeMethodDescriptionstatic FinishReason
Returns the enum constant of this class with the specified name.static FinishReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
stop
A message terminated by one of the stop tokens. -
length
Incomplete model output due to token limit. -
function_call
The model decided to call a function. -
content_filter
Omitted content due to a flag from content filters.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-