Upload streamlit_app.py
Browse files- 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 |
-
"
|
| 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 |
|