gradio/demo/static_textbox_blocks/run.py
2022-03-22 16:54:35 -07:00

10 lines
138 B
Python

import gradio as gr
demo = gr.Blocks()
with demo:
gr.Textbox("Hello")
gr.Number(5)
if __name__ == "__main__":
demo.launch()