Hemasagar commited on
Commit
d562bdc
·
verified ·
1 Parent(s): 1178ae5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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("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
 
 
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