myalexa / app.py
almncarlo's picture
Create app.py
def81e4 verified
raw
history blame
135 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()