tshirt / app.py
jennyc2455's picture
update
63831a3
raw
history blame
163 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!. How are you?"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()