space-one / app.py
digital6's picture
Update app.py
79e8853 verified
Raw
History Blame Contribute Delete
180 Bytes
import gradio as gr
def respond(message, history):
response = f"You said {message}\
\nAnd I say what's up"
return response
gr.ChatInterface(fn=respond).launch()