| # Configuration constants | |
| MAX_RESPONSE_LENGTH = 2000 | |
| DEFAULT_PROMPT = "Dr. Franz Psychochatbot:" | |
| # Response types | |
| RESPONSE_TYPES = { | |
| "NORMAL": "normal", | |
| "ANALYSIS": "analysis", | |
| "ADVICE": "advice", | |
| "EMOTIONAL": "emotional" | |
| } | |
| # Emotion categories | |
| EMOTION_CATEGORIES = [ | |
| "angry", | |
| "sad", | |
| "happy", | |
| "neutral", | |
| "confused", | |
| "excited" | |
| ] | |