Pratham0100 commited on
Commit
7a1df49
·
verified ·
1 Parent(s): 90d404d

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import uvicorn
2
+ from backend.main import app
3
+
4
+ if __name__ == "__main__":
5
+ # Hugging Face Spaces exposes port 7860
6
+ uvicorn.run(app, host="0.0.0.0", port=7860)