Package com.bytedesk.ai.prompt
Enum Class PromptTypeEnum
- All Implemented Interfaces:
Serializable,Comparable<PromptTypeEnum>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription客户画像/信息抽取通用提示词(默认)会话情绪分析会话意图识别会话总结工单辅助(分类/总结/填单等) -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PromptTypeEnumReturns the enum constant of this class with the specified name.static PromptTypeEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GENERAL
通用提示词(默认) -
THREAD_SUMMARY
会话总结 -
THREAD_INTENTION
会话意图识别 -
THREAD_EMOTION
会话情绪分析 -
CUSTOMER_PROFILE
客户画像/信息抽取 -
TICKET_ASSIST
工单辅助(分类/总结/填单等)
-
-
Constructor Details
-
PromptTypeEnum
private PromptTypeEnum()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- 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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-