public enum OpenAiLanguageModelName extends Enum<OpenAiLanguageModelName>
| Enum Constant and Description |
|---|
GPT_3_5_TURBO_INSTRUCT |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static OpenAiLanguageModelName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenAiLanguageModelName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenAiLanguageModelName GPT_3_5_TURBO_INSTRUCT
public static OpenAiLanguageModelName[] values()
for (OpenAiLanguageModelName c : OpenAiLanguageModelName.values()) System.out.println(c);
public static OpenAiLanguageModelName 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 nullpublic String toString()
toString in class Enum<OpenAiLanguageModelName>Copyright © 2024. All rights reserved.