Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,8 +13,8 @@ investment_experience = st.selectbox("Your Investment Experience", ["Beginner",
|
|
| 13 |
investment_goal = st.text_input("Investment Goal", placeholder="e.g., Retirement, Buying a Home, Education")
|
| 14 |
|
| 15 |
st.subheader("Financial Information")
|
| 16 |
-
annual_income = st.number_input("Annual Income", min_value=10000, max_value=1000000, step=1000
|
| 17 |
-
investment_amount = st.number_input("Amount Available for Investment", min_value=1000, max_value=500000, step=100
|
| 18 |
risk_tolerance = st.selectbox("Risk Tolerance", ["Low", "Medium", "High"])
|
| 19 |
|
| 20 |
if st.button('Generate My Investment Strategy'):
|
|
|
|
| 13 |
investment_goal = st.text_input("Investment Goal", placeholder="e.g., Retirement, Buying a Home, Education")
|
| 14 |
|
| 15 |
st.subheader("Financial Information")
|
| 16 |
+
annual_income = st.number_input("Annual Income", min_value=10000, max_value=1000000, step=1000) # Removed format argument
|
| 17 |
+
investment_amount = st.number_input("Amount Available for Investment", min_value=1000, max_value=500000, step=100) # Removed format argument
|
| 18 |
risk_tolerance = st.selectbox("Risk Tolerance", ["Low", "Medium", "High"])
|
| 19 |
|
| 20 |
if st.button('Generate My Investment Strategy'):
|