my-first-space / app.py
mxmxmxmxjn's picture
Upload app.py
4a2cf0e verified
Raw
History Blame Contribute Delete
231 Bytes
import gradio as gr
def respond(message, history):
response = f"You said: {message}\
\n And I say I love learning AI engineering with superdatascience!"
return response
gr.ChatInterface(fn=respond).launch()