hello_world / run.py
freddyaboulton's picture
Upload folder using huggingface_hub
d2a2515 verified
raw
history blame contribute delete
187 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()