patti-j's picture
Update app.py
c89315b
raw
history blame
161 Bytes
import gradio as gr
def response(message):
return "Hello " + message + "!!"
iface = gr.Interface(fn=response, inputs="text", outputs="text")
iface.launch()