Week1Test / app.py
hamdah926's picture
Create app.py
4f6ab2a verified
Raw
History Blame Contribute Delete
149 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()