Spaces:
Running
Running
Create app.py
Browse files
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)
|