File size: 370 Bytes
9eb915e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# 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"
]
|