freddyaboulton's picture
Upload with huggingface_hub
06b48bf
raw history blame
No virus
139 Bytes
import gradio as gr
demo = gr.Blocks()
with demo:
gr.Textbox("Hello")
gr.Number(5)
if __name__ == "__main__":
demo.launch()