Update app.py
Browse files
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="
|
12 |
-
st.title("
|
13 |
-
st.subheader("I can help you
|
14 |
|
15 |
|
16 |
# Upload the Invoices (pdf files)...
|
17 |
-
pdf = st.file_uploader("Upload
|
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 |
|