Spaces:
Running
Running
wenmengzhou
commited on
Commit
•
82f5baf
1
Parent(s):
3c7b309
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def show_markdown():
|
4 |
+
# Markdown content to be displayed
|
5 |
+
markdown_content = """
|
6 |
+
## Coming soon
|
7 |
+
|
8 |
+
Gradio for https://aigc3d.github.io/motionshop/, please stay tuned.
|
9 |
+
|
10 |
+
"""
|
11 |
+
return markdown_content
|
12 |
+
|
13 |
+
# Creating a Gradio interface to display the markdown
|
14 |
+
interface = gr.Interface(fn=show_markdown, inputs=[], outputs="markdown")
|
15 |
+
|
16 |
+
# Display the interface inline for demonstration purposes
|
17 |
+
interface.launch()
|