Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,7 +38,7 @@ st.header("Invoice Extractor")
|
|
| 38 |
|
| 39 |
# Sidebar for uploading image and entering question
|
| 40 |
st.sidebar.title("Upload Image and Enter Question")
|
| 41 |
-
uploaded_file = st.sidebar.file_uploader("Upload an invoice image...", type=["jpg"
|
| 42 |
if uploaded_file is not None:
|
| 43 |
image = None
|
| 44 |
image = Image.open(uploaded_file)
|
|
|
|
| 38 |
|
| 39 |
# Sidebar for uploading image and entering question
|
| 40 |
st.sidebar.title("Upload Image and Enter Question")
|
| 41 |
+
uploaded_file = st.sidebar.file_uploader("Upload an invoice image...", type=["jpg"])
|
| 42 |
if uploaded_file is not None:
|
| 43 |
image = None
|
| 44 |
image = Image.open(uploaded_file)
|