Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -0
src/streamlit_app.py
CHANGED
|
@@ -10,6 +10,7 @@ import streamlit.components.v1 as components
|
|
| 10 |
import scipy.sparse as sp
|
| 11 |
|
| 12 |
# Setup
|
|
|
|
| 13 |
NUMERIC_FEATURES = ['age','alcohol_consumption_per_week','physical_activity_minutes_per_week',
|
| 14 |
'diet_score','bmi','cholesterol_total','insulin_level','map','glucose_fasting']
|
| 15 |
CATEGORICAL_FEATURES = ['gender','ethnicity','education_level','income_level','employment_status',
|
|
|
|
| 10 |
import scipy.sparse as sp
|
| 11 |
|
| 12 |
# Setup
|
| 13 |
+
API_URL = os.getenv('API_URL')
|
| 14 |
NUMERIC_FEATURES = ['age','alcohol_consumption_per_week','physical_activity_minutes_per_week',
|
| 15 |
'diet_score','bmi','cholesterol_total','insulin_level','map','glucose_fasting']
|
| 16 |
CATEGORICAL_FEATURES = ['gender','ethnicity','education_level','income_level','employment_status',
|