Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
# THE DATA VAULT
|
| 4 |
+
# Your job: Expand this dictionary with the actual clinical data.
|
| 5 |
+
# Do not leave this half-baked. Add Aripiprazole, Flupentixol, Haloperidol, etc.
|
| 6 |
+
depot_database = {
|
| 7 |
+
"Paliperidone (Xeplion)": {
|
| 8 |
+
"needle_size": "Deltoid: 1-inch (or 1.5 for higher BMI). Gluteal: 1.5-inch.",
|
| 9 |
+
"technique": "Shake vigorously for 15 seconds. If you don't, it's basically wet cement.",
|
| 10 |
+
"z_track_required": True,
|
| 11 |
+
"half_life": "25-49 days",
|
| 12 |
+
"clinical_pearl": "Do not rub the site unless you want it to leak out like a cursed weeping statue."
|
| 13 |
+
},
|
| 14 |
+
"Zuclopenthixol Decanoate (Clopixol)": {
|
| 15 |
+
"needle_size": "Gluteal: 1.5-inch to 2-inch.",
|
| 16 |
+
"technique": "Deep intramuscular. It's thick, oily, and moves like refrigerated molasses. Take your time.",
|
| 17 |
+
"z_track_required": True,
|
| 18 |
+
"half_life": "17-39 days",
|
| 19 |
+
"clinical_pearl": "Warm the ampoule in your hands first unless you want the plunger to snap off."
|
| 20 |
+
}
|
| 21 |
+
}
|