Hemasagar commited on
Commit
439af7e
·
verified ·
1 Parent(s): 0883d0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -1,20 +1,19 @@
1
  import streamlit as st
2
- from utils import *
3
  from dotenv import load_dotenv
4
-
5
 
6
 
7
 
8
  def main():
9
  load_dotenv()
10
-
11
- st.set_page_config(page_title="pdf invoice Extraction Bot")
12
- st.title("I am Bot. How can I help you today?... ")
13
- st.subheader("I can help you extract text from pdfs. You can download CSV as an output and Aduio2Text.")
14
 
15
 
16
  # Upload the Invoices (pdf files)...
17
- pdf = st.file_uploader("Upload pdf invoices here for now, only PDF files allowed for Now", type=["pdf"],accept_multiple_files=True)
18
 
19
  submit=st.button("Extract Data")
20
 
 
1
  import streamlit as st
 
2
  from dotenv import load_dotenv
3
+ from utils import *
4
 
5
 
6
 
7
  def main():
8
  load_dotenv()
9
+
10
+ st.set_page_config(page_title="Invoice Extraction Bot")
11
+ st.title("Audio_to_text & Invoice Extraction Bot...💁 ")
12
+ st.subheader("I can help you in extracting text and invoice data and Aduio2text")
13
 
14
 
15
  # Upload the Invoices (pdf files)...
16
+ pdf = st.file_uploader("Upload invoices here for now, only PDF files allowed and will accept other formate as well", type=["pdf"],accept_multiple_files=True)
17
 
18
  submit=st.button("Extract Data")
19