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()