test_greeting / app.py
bgloh's picture
string change
87c64ad verified
raw
history blame
149 Bytes
import gradio as gr
def greet(name):
return "Hello2 " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()