demo_ui / gradio_ui.py
homerquan's picture
Upload folder using huggingface_hub
c428710 verified
raw
history blame contribute delete
219 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
demo.launch(share=True) # Share your demo with just 1 extra parameter πŸš€