hatimanees commited on
Commit
ba3a7ae
·
verified ·
1 Parent(s): 9189642

Upload 2 files

Browse files
Files changed (2) hide show
  1. requirements.txt +8 -0
  2. run.py +6 -0
requirements.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ Flask
2
+ Streamlit
3
+ transformers
4
+ gunicorn
5
+ requests
6
+ PyPDF2
7
+ flask_cors
8
+ torch
run.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from app import create_app
2
+
3
+ app = create_app()
4
+
5
+ if __name__ == "__main__":
6
+ app.run(host="0.0.0.0", port=5000)