ManoharPalanisamy
commited on
Commit
•
88682e2
1
Parent(s):
4138a76
Updated Title/UI Feature Enhancement by Author @ManoharPalanisamy , 15 Apr 2024 17:37
Browse files
app.py
CHANGED
@@ -35,9 +35,10 @@ def input_image_setup(uploaded_file):
|
|
35 |
raise FileNotFoundError("No file uploaded")
|
36 |
|
37 |
## Initialize our streamlit APP
|
38 |
-
|
|
|
39 |
|
40 |
-
st.header("Invoice
|
41 |
uploaded_file = st.file_uploader("Choose an image...", type=["jpg","jpeg","png"])
|
42 |
image = ""
|
43 |
if uploaded_file is not None:
|
|
|
35 |
raise FileNotFoundError("No file uploaded")
|
36 |
|
37 |
## Initialize our streamlit APP
|
38 |
+
## Initialize our streamlit APP
|
39 |
+
st.set_page_config(page_title="Invoice Extractor")
|
40 |
|
41 |
+
st.header("Gemini Pro Vision: The Future of Invoice Data Extraction")
|
42 |
uploaded_file = st.file_uploader("Choose an image...", type=["jpg","jpeg","png"])
|
43 |
image = ""
|
44 |
if uploaded_file is not None:
|