Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Eyob-Sol
/
futurecafe-voice-core
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Eyob-Sol
commited on
Sep 17
Commit
1da78a7
·
verified
·
1 Parent(s):
039c3b4
Upload app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from app.gradio_app import build_demo
2
+
3
+
def main():
4
+
demo = build_demo()
5
+
demo.launch(server_name="127.0.0.1", server_port=7860, inbrowser=False)
6
+
7
+
if __name__ == "__main__":
8
+
main()