ArpitChb commited on
Commit
4c7e10f
·
verified ·
1 Parent(s): a3a5c62

Upload streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -19,7 +19,7 @@ if uploaded_file is not None:
19
  with st.spinner("Classifying..."):
20
  # Send image to FastAPI backend
21
  response = requests.post(
22
- "http://localhost:8000/predict",
23
  files={"file": uploaded_file.getvalue()}
24
  )
25
 
 
19
  with st.spinner("Classifying..."):
20
  # Send image to FastAPI backend
21
  response = requests.post(
22
+ "https://potato-disease-classification-ltgh.onrender.com/predict",
23
  files={"file": uploaded_file.getvalue()}
24
  )
25