yuhuixu's picture
Update app.py
aa6dc6d verified
raw
history blame
190 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.Markdown(
"""
# Hello World!
Start typing below to see the output.
""")
if __name__ == "__main__":
demo.launch()