Dr_Frank / utils /constants.py
Frajosgro's picture
Upload 5 files
9eb915e verified
raw
history blame
370 Bytes
# 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"
]