Enum Class PromptTypeEnum

java.lang.Object
java.lang.Enum<PromptTypeEnum>
com.bytedesk.ai.prompt.PromptTypeEnum
All Implemented Interfaces:
Serializable, Comparable<PromptTypeEnum>, Constable

public enum PromptTypeEnum extends Enum<PromptTypeEnum>
  • Enum Constant Details

    • GENERAL

      public static final PromptTypeEnum GENERAL
      通用提示词(默认)
    • THREAD_SUMMARY

      public static final PromptTypeEnum THREAD_SUMMARY
      会话总结
    • THREAD_INTENTION

      public static final PromptTypeEnum THREAD_INTENTION
      会话意图识别
    • THREAD_EMOTION

      public static final PromptTypeEnum THREAD_EMOTION
      会话情绪分析
    • CUSTOMER_PROFILE

      public static final PromptTypeEnum CUSTOMER_PROFILE
      客户画像/信息抽取
    • TICKET_ASSIST

      public static final PromptTypeEnum TICKET_ASSIST
      工单辅助(分类/总结/填单等)
  • Constructor Details

    • PromptTypeEnum

      private PromptTypeEnum()
  • Method Details

    • values

      public static PromptTypeEnum[] 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

      public static PromptTypeEnum valueOf(String name)
      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 name
      NullPointerException - if the argument is null