hello_world / run.py
aliabd's picture
aliabd HF staff
Upload folder using huggingface_hub
3c7b313 verified
raw
history blame contribute delete
No virus
185 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
if __name__ == "__main__":
demo.launch()