public enum AssistantToolsEnum extends java.lang.Enum<AssistantToolsEnum>
| Enum Constant and Description |
|---|
CODE_INTERPRETER |
FUNCTION |
RETRIEVAL |
| Modifier and Type | Method and Description |
|---|---|
static AssistantToolsEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssistantToolsEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssistantToolsEnum CODE_INTERPRETER
public static final AssistantToolsEnum FUNCTION
public static final AssistantToolsEnum RETRIEVAL
public static AssistantToolsEnum[] values()
for (AssistantToolsEnum c : AssistantToolsEnum.values()) System.out.println(c);
public static AssistantToolsEnum valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null