shashwatashish commited on
Commit
6555a28
·
verified ·
1 Parent(s): 38ba8f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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"