Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def get_coordinates(location):
|
|
21 |
except:
|
22 |
return None
|
23 |
|
24 |
-
with open(
|
25 |
symptoms = [line.strip().lower() for line in file]
|
26 |
if prompt:
|
27 |
if any(symptom in prompt.lower() for symptom in symptoms):
|
|
|
21 |
except:
|
22 |
return None
|
23 |
|
24 |
+
with open('symptoms_1.txt', 'r') as file:
|
25 |
symptoms = [line.strip().lower() for line in file]
|
26 |
if prompt:
|
27 |
if any(symptom in prompt.lower() for symptom in symptoms):
|