Package org.codelibs.fess.llm
Enum Class ChatIntent
- All Implemented Interfaces:
Serializable,Comparable<ChatIntent>,Constable
Represents the intent type detected from a user's chat message.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ChatIntentParses a string value to ChatIntent enum.getValue()Returns the string value of this intent.static ChatIntentReturns the enum constant of this class with the specified name.static ChatIntent[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SEARCH
User wants to search for documents in Fess -
SUMMARY
User wants a summary of a specific document -
FAQ
User is asking a FAQ-type question -
UNCLEAR
Intent is unclear - need to ask user for clarification
-
-
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
-
getValue
Returns the string value of this intent.- Returns:
- the intent value
-
fromValue
Parses a string value to ChatIntent enum.- Parameters:
value- the string value to parse- Returns:
- the corresponding ChatIntent, defaults to UNCLEAR if not found
-