Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -46,8 +46,13 @@ diseases_info = {
|
|
| 46 |
"symptoms": ["fever", "dry cough", "fatigue", "loss of taste or smell", "shortness of breath"],
|
| 47 |
"treatment": "Rest, fluids, over-the-counter medications, and antiviral drugs if prescribed.",
|
| 48 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
}
|
| 50 |
|
|
|
|
| 51 |
# Function to display disease info
|
| 52 |
def display_disease_info(disease_name):
|
| 53 |
disease_name = disease_name.lower().replace(" ", "_")
|
|
|
|
| 46 |
"symptoms": ["fever", "dry cough", "fatigue", "loss of taste or smell", "shortness of breath"],
|
| 47 |
"treatment": "Rest, fluids, over-the-counter medications, and antiviral drugs if prescribed.",
|
| 48 |
},
|
| 49 |
+
"blood cancer": {
|
| 50 |
+
"symptoms": ["weightloss", "hiarfall", "weakness", "bedrest"],
|
| 51 |
+
"treatment": " over-the-counter medications, and antiviral drugs if prescribed.",
|
| 52 |
+
},
|
| 53 |
}
|
| 54 |
|
| 55 |
+
|
| 56 |
# Function to display disease info
|
| 57 |
def display_disease_info(disease_name):
|
| 58 |
disease_name = disease_name.lower().replace(" ", "_")
|