Enum Class Openai
- 所有已实现的接口:
Serializable
,Comparable<Openai>
,Constable
Openai 模型
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量枚举常量说明模型名称 babbage-002模型名称 gpt-4o-latest模型名称 dall-e-2模型名称 dall-e-3模型名称 davinci-002模型名称 gpt-3.5-turbo模型名称 gpt-3.5-turbo-preview模型名称 gpt-3.5-turbo-1106模型名称 gpt-3.5-turbo-instruct模型名称 gpt-4模型名称 gpt-4.5-preview模型名称 gpt-4-turbo模型名称 gpt-4-turbo-preview模型名称 gpt-4o模型名称 gpt-4o-audio-preview模型名称 gpt-4o-mini模型名称 gpt-4o-mini-audio-preview模型名称 gpt-4o-mini-realtime-preview模型名称 gpt-4o-realtime-preview模型名称 o1模型名称 o1-preview模型名称 o3-mini模型名称 omni-moderation-2024-09-26模型名称 omni-moderation模型名称 text-embedding-3-large模型名称 text-embedding-3-small模型名称 text-embedding-ada-002模型名称 text-moderation-007模型名称 text-moderation模型名称 text-moderation-stable模型名称 tts-1模型名称 tts-1-hd模型名称 whisper-1 -
方法概要
从类继承的方法 java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
枚举常量详细资料
-
GPT_4_5_PREVIEW
模型名称 gpt-4.5-preview -
GPT_4O
模型名称 gpt-4o -
CHATGPT_4O_LATEST
模型名称 gpt-4o-latest -
GPT_4O_MINI
模型名称 gpt-4o-mini -
O1
模型名称 o1 -
O1_MINI
-
O3_MINI
模型名称 o3-mini -
O1_PREVIEW
模型名称 o1-preview -
GPT_4O_REALTIME_PREVIEW
模型名称 gpt-4o-realtime-preview -
GPT_4O_MINI_REALTIME_PREVIEW
模型名称 gpt-4o-mini-realtime-preview -
GPT_4O_AUDIO_PREVIEW
模型名称 gpt-4o-audio-preview -
GPT_4O_MINI_AUDIO_PREVIEW
模型名称 gpt-4o-mini-audio-preview -
GPT_4_TURBO
模型名称 gpt-4-turbo -
GPT_4_TURBO_PREVIEW
模型名称 gpt-4-turbo-preview -
GPT_4
模型名称 gpt-4 -
GPT_3_5_TURBO_0125
模型名称 gpt-3.5-turbo-preview -
GPT_3_5_TURBO
模型名称 gpt-3.5-turbo -
GPT_3_5_TURBO_1106
模型名称 gpt-3.5-turbo-1106 -
GPT_3_5_TURBO_INSTRUCT
模型名称 gpt-3.5-turbo-instruct -
DALL_E_3
模型名称 dall-e-3 -
DALL_E_2
模型名称 dall-e-2 -
TTS_1
模型名称 tts-1 -
TTS_1_HD
模型名称 tts-1-hd -
WHISPER_1
模型名称 whisper-1 -
TEXT_EMBEDDING_3_LARGE
模型名称 text-embedding-3-large -
TEXT_EMBEDDING_3_SMALL
模型名称 text-embedding-3-small -
TEXT_EMBEDDING_ADA_002
模型名称 text-embedding-ada-002 -
OMNI_MODERATION_LATEST
模型名称 omni-moderation -
OMNI_MODERATION_2024_09_26
模型名称 omni-moderation-2024-09-26 -
TEXT_MODERATION_LATEST
模型名称 text-moderation -
TEXT_MODERATION_STABLE
模型名称 text-moderation-stable -
TEXT_MODERATION_007
模型名称 text-moderation-007 -
BABBAGE_002
模型名称 babbage-002 -
DAVINCI_002
模型名称 davinci-002
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-