public static enum BaseChatCompletion.Model extends Enum<BaseChatCompletion.Model>
| Enum Constant and Description |
|---|
GPT_3_5_TURBO
gpt-3.5-turbo
|
GPT_3_5_TURBO_0301
Deprecated.
|
GPT_3_5_TURBO_0613
gpt-3.5-turbo-0613 支持函数
|
GPT_3_5_TURBO_1106
gpt-3.5-turbo-1106 最新的 GPT-3.5 Turbo 模型具有改进的指令跟踪、JSON 模式、可重现的输出、并行函数调用等。
|
GPT_3_5_TURBO_16K
gpt-3.5-turbo-16k 超长上下文
|
GPT_3_5_TURBO_16K_0613
gpt-3.5-turbo-16k-0613 超长上下文 支持函数
|
GPT_4
GPT4.0
|
GPT_4_0314
Deprecated.
|
GPT_4_0613
gpt-4-0613,支持函数
|
GPT_4_1106_PREVIEW
支持数组模式,支持function call,支持可重复输出
|
GPT_4_32K
GPT4.0 超长上下文
|
GPT_4_32K_0314
Deprecated.
|
GPT_4_32K_0613
gpt-4-0613,支持函数
|
GPT_4_VISION_PREVIEW
支持图片
|
| Modifier and Type | Method and Description |
|---|---|
static BaseChatCompletion.Model |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseChatCompletion.Model[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseChatCompletion.Model GPT_3_5_TURBO
@Deprecated public static final BaseChatCompletion.Model GPT_3_5_TURBO_0301
public static final BaseChatCompletion.Model GPT_3_5_TURBO_0613
public static final BaseChatCompletion.Model GPT_3_5_TURBO_16K
public static final BaseChatCompletion.Model GPT_3_5_TURBO_16K_0613
public static final BaseChatCompletion.Model GPT_3_5_TURBO_1106
public static final BaseChatCompletion.Model GPT_4
@Deprecated public static final BaseChatCompletion.Model GPT_4_0314
public static final BaseChatCompletion.Model GPT_4_32K
@Deprecated public static final BaseChatCompletion.Model GPT_4_32K_0314
public static final BaseChatCompletion.Model GPT_4_0613
public static final BaseChatCompletion.Model GPT_4_32K_0613
public static final BaseChatCompletion.Model GPT_4_1106_PREVIEW
public static final BaseChatCompletion.Model GPT_4_VISION_PREVIEW
public static BaseChatCompletion.Model[] values()
for (BaseChatCompletion.Model c : BaseChatCompletion.Model.values()) System.out.println(c);
public static BaseChatCompletion.Model 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 grt1228. All rights reserved.