File size: 190 Bytes
fcf2b60
 
 
aa6dc6d
 
 
 
 
 
fcf2b60
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()