Spaces:
Sleeping
Sleeping
KevinIsInCoding Claude Sonnet 4.6 commited on
Commit Β·
077fd95
1
Parent(s): 57735b3
Elaborate clinical trial phase descriptions in intake prompt
Browse filesPatients often don't know what trial phases mean. The intake agent now
briefly explains each phase (Early Phase 1 through Phase 4) so patients
can make an informed choice about which phases they're open to.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- clinical_trials_guru.py +13 -3
clinical_trials_guru.py
CHANGED
|
@@ -62,7 +62,7 @@ SUBMIT_PROFILE_TOOL: anthropic.types.ToolParam = {
|
|
| 62 |
"phases": {
|
| 63 |
"type": "array",
|
| 64 |
"items": {"type": "string", "enum": ["0", "1", "2", "3", "4"]},
|
| 65 |
-
"description": "Desired trial phases. Empty = all phases.",
|
| 66 |
},
|
| 67 |
"include_eap": {
|
| 68 |
"type": "boolean",
|
|
@@ -128,10 +128,20 @@ OPTIONAL (ask based on disease):
|
|
| 128 |
Duchenne/Pompe β 6-Minute Walk Test; Friedreich's β SARA score
|
| 129 |
β’ Preferred search radius in miles (default 100)
|
| 130 |
β’ Study types of interest β ask whether the patient wants:
|
| 131 |
-
- Clinical trials
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
- Expanded Access Programs (EAP / compassionate use) β for patients who may not
|
| 133 |
qualify for a trial but want access to an investigational treatment
|
| 134 |
-
- Or both
|
| 135 |
|
| 136 |
Ask naturally. Infer what you can. Once you have the required fields, call submit_profile.\
|
| 137 |
"""
|
|
|
|
| 62 |
"phases": {
|
| 63 |
"type": "array",
|
| 64 |
"items": {"type": "string", "enum": ["0", "1", "2", "3", "4"]},
|
| 65 |
+
"description": "Desired trial phases (0=Early Phase 1, 1=Phase 1, 2=Phase 2, 3=Phase 3, 4=Phase 4). Empty = all phases.",
|
| 66 |
},
|
| 67 |
"include_eap": {
|
| 68 |
"type": "boolean",
|
|
|
|
| 128 |
Duchenne/Pompe β 6-Minute Walk Test; Friedreich's β SARA score
|
| 129 |
β’ Preferred search radius in miles (default 100)
|
| 130 |
β’ Study types of interest β ask whether the patient wants:
|
| 131 |
+
- Clinical trials. Briefly explain the phases so the patient can choose:
|
| 132 |
+
Early Phase 1 β First-in-human safety testing; tiny doses, very small group (~10β15 people);
|
| 133 |
+
no efficacy data yet; highest uncertainty.
|
| 134 |
+
Phase 1 β Establishes safe dosage range and identifies side effects;
|
| 135 |
+
small group (20β80 people); primary goal is safety, not treatment.
|
| 136 |
+
Phase 2 β Tests whether the treatment works and further evaluates safety;
|
| 137 |
+
larger group (100β300 people); patients more likely to receive active drug.
|
| 138 |
+
Phase 3 β Compares treatment against current standard of care in a large group
|
| 139 |
+
(1,000β3,000 people); required for regulatory approval; best efficacy evidence.
|
| 140 |
+
Phase 4 β Post-approval surveillance; treatment is already FDA-approved;
|
| 141 |
+
studies long-term safety, rare side effects, and new uses.
|
| 142 |
- Expanded Access Programs (EAP / compassionate use) β for patients who may not
|
| 143 |
qualify for a trial but want access to an investigational treatment
|
| 144 |
+
- Or both; or all phases (default if no preference)
|
| 145 |
|
| 146 |
Ask naturally. Infer what you can. Once you have the required fields, call submit_profile.\
|
| 147 |
"""
|