Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -57,7 +57,7 @@ if st.button("Predict Sales"):
|
|
| 57 |
try:
|
| 58 |
result = response.json()
|
| 59 |
st.subheader("🔍 Raw Backend Response")
|
| 60 |
-
st.json(result) # SHOW FULL JSON RETURNED
|
| 61 |
|
| 62 |
prediction = result.get("Predicted_Sales", None)
|
| 63 |
except ValueError:
|
|
|
|
| 57 |
try:
|
| 58 |
result = response.json()
|
| 59 |
st.subheader("🔍 Raw Backend Response")
|
| 60 |
+
#st.json(result) # SHOW FULL JSON RETURNED
|
| 61 |
|
| 62 |
prediction = result.get("Predicted_Sales", None)
|
| 63 |
except ValueError:
|