forked from jswope00/AI-MicroApps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster_config.py
31 lines (29 loc) · 1.15 KB
/
master_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# 1. Page Config - Dict
PAGE_CONFIG = {
"page_title": "AI MicroApps", # title of app if one app is implemented
"page_icon": "🎯", # replace based on App if it is single
"layout": "centered", # "centered" or "wide"
"initial_sidebar_state": "expanded" # Options: "auto", "expanded", "collapsed"
}
# 2. Sidebar State - Hidden, Collapsed, or Expanded
SIDEBAR_HIDDEN = False # Set to True to completely hide the sidebar
# 3. Templates
TEMPLATES = {
"Fresno Test": "config_fresno_rubric",
"TEST": "config",
"Alt Text Generator": "config_alt_text",
"Case Study: Ebola": "config_ebola_case_study",
"Demo 1": "config_demo1",
"Demo 2": "config_demo2",
"ai_assessment": "config",
"MCQ Generator": "config_mcq_generator",
"Debate an AI": "config_debate",
"mSCT Tutor": "config_msct_tutor",
"Find the Incorrect Fact": "config_incorrect_fact",
"SOAP Notes Scoring": "config_soap",
"Question Feedback Generator": "config_question_feedback",
"Learning Objective Generator": "config_lo_generator",
"Image Quiz": "config_image_quiz",
"Zodiac Symbol": "config_zodiac",
"Career Advisor": "config_career_path"
}