public enum FinishReason extends Enum<FinishReason>
| Enum Constant and Description |
|---|
CONTENT_FILTER |
LENGTH |
OTHER |
STOP |
TOOL_EXECUTION |
| Modifier and Type | Method and Description |
|---|---|
static FinishReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FinishReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinishReason STOP
public static final FinishReason LENGTH
public static final FinishReason TOOL_EXECUTION
public static final FinishReason CONTENT_FILTER
public static final FinishReason OTHER
public static FinishReason[] values()
for (FinishReason c : FinishReason.values()) System.out.println(c);
public static FinishReason valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.