Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
import streamlit as st
|
2 |
-
from dotenv import load_dotenv
|
3 |
from utils import *
|
4 |
|
5 |
|
@@ -8,12 +7,12 @@ def main():
|
|
8 |
load_dotenv()
|
9 |
|
10 |
st.set_page_config(page_title="Invoice Extraction Bot")
|
11 |
-
st.title("
|
12 |
-
st.subheader("I can help you
|
13 |
|
14 |
|
15 |
# Upload the Invoices (pdf files)...
|
16 |
-
pdf = st.file_uploader("Upload invoices here for now, only PDF files allowed
|
17 |
|
18 |
submit=st.button("Extract Data")
|
19 |
|
|
|
1 |
import streamlit as st
|
|
|
2 |
from utils import *
|
3 |
|
4 |
|
|
|
7 |
load_dotenv()
|
8 |
|
9 |
st.set_page_config(page_title="Invoice Extraction Bot")
|
10 |
+
st.title("I am Bot. How maay I help you today... ")
|
11 |
+
st.subheader("I can help you extract text from pdfs. You can download CSV as an output and Aduio2Text.")
|
12 |
|
13 |
|
14 |
# Upload the Invoices (pdf files)...
|
15 |
+
pdf = st.file_uploader("Upload pdf invoices here for now, only PDF files allowed for Now", type=["pdf"],accept_multiple_files=True)
|
16 |
|
17 |
submit=st.button("Extract Data")
|
18 |
|