public enum ChatCompletionModel extends Enum<ChatCompletionModel>
| Enum Constant and Description |
|---|
GPT_3_5_TURBO |
GPT_3_5_TURBO_0613 |
GPT_3_5_TURBO_1106 |
GPT_3_5_TURBO_16K |
GPT_3_5_TURBO_16K_0613 |
GPT_4 |
GPT_4_0314 |
GPT_4_0613 |
GPT_4_1106_PREVIEW |
GPT_4_32K |
GPT_4_32K_0314 |
GPT_4_32K_0613 |
GPT_4_VISION_PREVIEW |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ChatCompletionModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatCompletionModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatCompletionModel GPT_3_5_TURBO
public static final ChatCompletionModel GPT_3_5_TURBO_0613
public static final ChatCompletionModel GPT_3_5_TURBO_1106
public static final ChatCompletionModel GPT_3_5_TURBO_16K
public static final ChatCompletionModel GPT_3_5_TURBO_16K_0613
public static final ChatCompletionModel GPT_4
public static final ChatCompletionModel GPT_4_0314
public static final ChatCompletionModel GPT_4_0613
public static final ChatCompletionModel GPT_4_32K
public static final ChatCompletionModel GPT_4_32K_0314
public static final ChatCompletionModel GPT_4_32K_0613
public static final ChatCompletionModel GPT_4_1106_PREVIEW
public static final ChatCompletionModel GPT_4_VISION_PREVIEW
public static ChatCompletionModel[] values()
for (ChatCompletionModel c : ChatCompletionModel.values()) System.out.println(c);
public static ChatCompletionModel 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<ChatCompletionModel>Copyright © 2023. All rights reserved.