Zwounds commited on
Commit
61ccd2e
·
verified ·
1 Parent(s): 937d02e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # This file is for Hugging Face Spaces deployment
2
+ # It simply imports and runs the main app
3
+
4
+ from cv_extraction_app import app
5
+
6
+ # Launch the app with specific settings for Hugging Face Spaces
7
+ if __name__ == "__main__":
8
+ app.launch(share=False)