Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -40,6 +40,6 @@ if st.button("Predict", type='primary'):
|
|
| 40 |
if response.status_code == 200:
|
| 41 |
result = response.json()
|
| 42 |
product_store_total_sales = result["Product Store Sales Total"] # Extract only the value
|
| 43 |
-
st.write(f"Based on the information provided, the product with ID {
|
| 44 |
else:
|
| 45 |
st.error("Error in API request")
|
|
|
|
| 40 |
if response.status_code == 200:
|
| 41 |
result = response.json()
|
| 42 |
product_store_total_sales = result["Product Store Sales Total"] # Extract only the value
|
| 43 |
+
st.write(f"Based on the information provided, the product with ID {Product_Id} is having sales total as {product_store_total_sales}.")
|
| 44 |
else:
|
| 45 |
st.error("Error in API request")
|