Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -146,13 +146,14 @@ def show_main_app():
|
|
146 |
selected_model = st.selectbox("Choose an LLM", model_options)
|
147 |
|
148 |
st.subheader("User Information")
|
149 |
-
user_age = st.number_input("Age", min_value=18, max_value=100, value=
|
150 |
-
user_weight = st.number_input("Weight (kg)", min_value=30, max_value=
|
151 |
-
user_height = st.number_input("Height (cm)", min_value=100, max_value=250, value=
|
152 |
|
153 |
fitness_level = st.selectbox(
|
154 |
"Fitness Level",
|
155 |
-
options=["Beginner", "Intermediate", "Advanced"]
|
|
|
156 |
)
|
157 |
health_conditions = st.multiselect(
|
158 |
"Health Conditions (if any)",
|
|
|
146 |
selected_model = st.selectbox("Choose an LLM", model_options)
|
147 |
|
148 |
st.subheader("User Information")
|
149 |
+
user_age = st.number_input("Age", min_value=18, max_value=100, value=21)
|
150 |
+
user_weight = st.number_input("Weight (kg)", min_value=30, max_value=68, value=70)
|
151 |
+
user_height = st.number_input("Height (cm)", min_value=100, max_value=250, value=172)
|
152 |
|
153 |
fitness_level = st.selectbox(
|
154 |
"Fitness Level",
|
155 |
+
options=["Beginner", "Intermediate", "Advanced"],
|
156 |
+
value="Advanced"
|
157 |
)
|
158 |
health_conditions = st.multiselect(
|
159 |
"Health Conditions (if any)",
|