Source code for intent_classification.constants

[docs]class IntentConstants: USER_INTENT_GREETING = "Greeting" USER_INTENT_DISAPPOINTMENT = "Disappointment" USER_INTENT_FARMING = "Farming_related" USER_INTENT_REFERRING_BACK = "Referring_back" USER_INTENT_CHANGE_CROP = "Change_crop" USER_INTENT_UNCLEAR = "Unclear" USER_INTENT_EXIT = "Exit" USER_INTENT_OUT_CONTEXT = "Out_of_context"