Skip to content

Commit 173f1f7

Browse files
authored
Merge pull request #7 from neo4j-field/patient-journey
synthea questions
2 parents 96e80e8 + b17d661 commit 173f1f7

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

components/questions.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,17 @@
1212
"What color is the sky?",
1313
]
1414

15-
patient_journey_questions = ["Describe the journey for patient 8b0484cd-3dbd-8b8d-1b72-a32f74a5a846",
16-
"What are common drugs for male patients over age 50?"]
17-
15+
patient_journey_questions = [
16+
"Most commonly prescribed drugs for patients in their 20s?",
17+
"What is Naproxen usually prescribed for?",
18+
"Which age group is predniSONE usually prescribed to?",
19+
"What are the most common diagnoses prior to Naproxen prescriptions?",
20+
"Which age group is anemia usually diagnosed?",
21+
"Which decades have the most hepatitus B immunizations?",
22+
"What are the most commonly diagnosed conditions for patients above 60?",
23+
"Please summarize the patient journey for patient id 4fdafa07-e5cb-9b2a-55c6-50902c49ccfb",
24+
"What are common drugs for male patients over age 50?"
25+
]
1826

1927
def get_demo_questions(source: Literal["IQS", "Patient Journey"]) -> List[str]:
2028
return iqs_questions if source == "IQS" else patient_journey_questions

0 commit comments

Comments
 (0)