hello_world / run.py
aliabid94's picture
aliabid94 HF Staff
Upload folder using huggingface_hub
8d05107
import gradio as gr
def greet(name):
return "Hey " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
demo.launch()