Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -153,3 +153,7 @@ def identify_unit_of_analysis(text):
|
|
153 |
if any(x in lower for x in ["participant", "individual", "student", "employee"]):
|
154 |
return "Individual"
|
155 |
return "Unknown"
|
|
|
|
|
|
|
|
|
|
153 |
if any(x in lower for x in ["participant", "individual", "student", "employee"]):
|
154 |
return "Individual"
|
155 |
return "Unknown"
|
156 |
+
|
157 |
+
import os
|
158 |
+
os.environ["STREAMLIT_SERVER_HEADLESS"] = "true"
|
159 |
+
os.environ["STREAMLIT_SERVER_ADDRESS"] = "0.0.0.0"
|