Chandranshu Jain commited on
Commit
782c184
1 Parent(s): 4f9a780

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -87,4 +87,7 @@ def main():
87
  raw_text = get_pdf(pdf_docs)
88
  text_chunks = text_splitter(raw_text)
89
  embedding(text_chunks)
90
- st.success("Done")
 
 
 
 
87
  raw_text = get_pdf(pdf_docs)
88
  text_chunks = text_splitter(raw_text)
89
  embedding(text_chunks)
90
+ st.success("Done")
91
+
92
+ if __name__ == "__main__":
93
+ main()