hello_world / run.py
aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
4f9f24a
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
if __name__ == "__main__":
demo.launch()