File size: 139 Bytes
06b48bf
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

demo = gr.Blocks()

with demo:
    gr.Textbox("Hello")
    gr.Number(5)

if __name__ == "__main__":
    demo.launch()