Package ai.vespa.llm.completion
Enum Class Completion.FinishReason
- All Implemented Interfaces:
Serializable,Comparable<Completion.FinishReason>,Constable
- Enclosing class:
- Completion
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe request for the completion was discarded without raising an error.An error occurred while generating the completionThe maximum length of a completion was reached.The completion is not finished yet, more tokens are incoming.Other, may be encountered for models with specific stop tokens, e.g.The completion is the predicted ending of the prompt. -
Method Summary
Modifier and TypeMethodDescriptionstatic Completion.FinishReasonReturns the enum constant of this class with the specified name.static Completion.FinishReason[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
length
The maximum length of a completion was reached. -
stop
The completion is the predicted ending of the prompt. -
none
The completion is not finished yet, more tokens are incoming. -
other
Other, may be encountered for models with specific stop tokens, e.g. 'eos' for deepseek. -
error
An error occurred while generating the completion -
discard
The request for the completion was discarded without raising an error.
-
-
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
-