my-first-space / app.py
thamesah's picture
Upload app.py
7748fab verified
Raw
History Blame Contribute Delete
205 Bytes
import gradio as gr
def respond(message, history):
response = f"you said {message}\
\n\n and I say I love everything I do!"
return response
gr.ChatInterface(fn=respond).launch()