on1onmangoes commited on
Commit
aafa40b
·
verified ·
1 Parent(s): ed96cae

Upload gradio_app.py with huggingface_hub

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