Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,17 +1,20 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
|
| 17 |
-
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def main():
|
| 4 |
+
with gr.Blocks() as demo:
|
| 5 |
+
gr.Markdown("""
|
| 6 |
+
## Coming soon
|
| 7 |
|
| 8 |
+
Gradio for https://aigc3d.github.io/motionshop/, please stay tuned
|
| 9 |
+
""")
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
demo.queue().launch(
|
| 13 |
+
share=args.share,
|
| 14 |
+
# inbrowser=args.inbrowser,
|
| 15 |
+
# server_port=args.server_port,
|
| 16 |
+
# server_name=args.server_name,
|
| 17 |
+
)
|
| 18 |
|
| 19 |
+
if __name__ == '__main__':
|
| 20 |
+
main()
|