Spaces:
Runtime error
Runtime error
| import streamlit as st | |
| import pandas as pd | |
| import requests | |
| # Streamlit UI | |
| st.title("Test App") | |
| st.write("This tool predicts the sales for a specific SuperKart store. Enter the required information below.") | |
| if st.button("Predict", type='primary'): | |
| result = requests.get() | |
| st.success(result) | |
| else: | |
| st.write(f"Error in API request") | |