Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,50 +13,48 @@ def display_flashcard(main_point, subpoints):
|
|
13 |
|
14 |
def main():
|
15 |
# CHARMSED outline
|
16 |
-
outline =
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
- *Clinical Documentation Editor:* Ensure clarity and coherence in patient records and clinical documentation.
|
59 |
-
"""
|
60 |
|
61 |
# Iterate through the outline to display each flashcard
|
62 |
for main_point, subpoints in outline.items():
|
|
|
13 |
|
14 |
def main():
|
15 |
# CHARMSED outline
|
16 |
+
outline = {
|
17 |
+
"Coder π»": [
|
18 |
+
"Health Informatics Specialist: Manage and analyze health data to improve patient care.",
|
19 |
+
"Clinical Software Engineer: Design and maintain software solutions for healthcare institutions.",
|
20 |
+
"Medical Data Scientist: Analyze patient and clinical data for actionable insights."
|
21 |
+
],
|
22 |
+
"Humanities Expert π": [
|
23 |
+
"Medical Ethicist: Address ethical issues arising in medical practice and research.",
|
24 |
+
"Patient Advocate: Represent and support patients' rights and interests.",
|
25 |
+
"Healthcare Historian: Study and interpret the history of medicine and healthcare."
|
26 |
+
],
|
27 |
+
"Analyst π€": [
|
28 |
+
"Healthcare Data Analyst: Process and analyze health data for decision-making.",
|
29 |
+
"Epidemiologist: Study disease patterns and develop strategies for prevention.",
|
30 |
+
"Behavioral Health Analyst: Assess and interpret behavioral health data to guide treatment."
|
31 |
+
],
|
32 |
+
"Roleplay Expert π": [
|
33 |
+
"Medical Simulation Specialist: Design and execute simulations for medical training.",
|
34 |
+
"Patient Experience Trainer: Educate healthcare staff on improving patient interactions.",
|
35 |
+
"Clinical Psychologist: Understand and address patient behaviors and mental health needs."
|
36 |
+
],
|
37 |
+
"Mathematician β": [
|
38 |
+
"Biostatistician: Apply statistical methods to biological and health data.",
|
39 |
+
"Health Economist: Analyze the economic aspects of health and healthcare.",
|
40 |
+
"Medical Research Scientist: Develop and apply mathematical models in medical research."
|
41 |
+
],
|
42 |
+
"STEM Expert π¬": [
|
43 |
+
"Biomedical Engineer: Design and develop medical devices and technologies.",
|
44 |
+
"Pharmaceutical Researcher: Study and develop new drugs for patient care.",
|
45 |
+
"Clinical Laboratory Scientist: Conduct tests and procedures to diagnose diseases."
|
46 |
+
],
|
47 |
+
"Extraction Expert π": [
|
48 |
+
"Medical Librarian: Manage and provide access to medical literature and resources.",
|
49 |
+
"Clinical Documentation Specialist: Ensure the accuracy and completeness of patient records.",
|
50 |
+
"Medical Researcher: Extract and interpret data from medical studies to provide insights."
|
51 |
+
],
|
52 |
+
"Drafter π": [
|
53 |
+
"Medical Writer: Produce clear and accurate documentation for medical research and publications.",
|
54 |
+
"Healthcare Educator: Develop and deliver educational content for patients and professionals.",
|
55 |
+
"Clinical Documentation Editor: Ensure clarity and coherence in patient records and clinical documentation."
|
56 |
+
]
|
57 |
+
}
|
|
|
|
|
58 |
|
59 |
# Iterate through the outline to display each flashcard
|
60 |
for main_point, subpoints in outline.items():
|