Motionshop / app.py
wenmengzhou's picture
Create app.py
82f5baf verified
raw history blame
No virus
448 Bytes
import gradio as gr
def show_markdown():
# Markdown content to be displayed
markdown_content = """
## Coming soon
Gradio for https://aigc3d.github.io/motionshop/, please stay tuned.
"""
return markdown_content
# Creating a Gradio interface to display the markdown
interface = gr.Interface(fn=show_markdown, inputs=[], outputs="markdown")
# Display the interface inline for demonstration purposes
interface.launch()