SEAAITUTOR / config.py
AptlyDigital's picture
Create config.py
f715c6e verified
"""
Configuration file for SEA Prep Tutor
"""
# App configuration
APP_CONFIG = {
"app_name": "SEA Prep AI Tutor",
"version": "1.0.0",
"description": "AI-powered SEA exam preparation platform",
"author": "Your Name",
"max_file_size_mb": 10,
"supported_formats": [".pdf"],
"default_student_id": "default"
}
# Subject configuration
SUBJECTS = {
"Math": {
"topics": [
"Number Concepts", "Computation", "Fractions", "Decimals", "Percentages",
"Measurement", "Geometry", "Algebra", "Statistics", "Word Problems"
],
"question_types": ["MCQ", "Short Answer", "Problem Solving", "Word Problem"]
},
"Language Arts": {
"topics": [
"Comprehension", "Grammar", "Vocabulary", "Punctuation",
"Spelling", "Creative Writing", "Letter Writing", "Essay Writing"
],
"question_types": ["MCQ", "Comprehension", "Grammar Exercise", "Writing Prompt"]
}
}
# Difficulty mapping
DIFFICULTY_LEVELS = {
1: {"label": "Very Easy", "color": "#4CAF50"},
2: {"label": "Easy", "color": "#8BC34A"},
3: {"label": "Medium", "color": "#FFC107"},
4: {"label": "Hard", "color": "#FF9800"},
5: {"label": "Very Hard", "color": "#F44336"}
}
# Gradio theme configuration
GRADIO_THEME = {
"primary_hue": "blue",
"secondary_hue": "yellow",
"neutral_hue": "gray",
"font": ("Helvetica", "Arial", "sans-serif")
}