mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
10 lines
138 B
Python
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() |