my-first-space / app.py
belsarpp's picture
Upload app.py
2318fe0 verified
Raw
History Blame Contribute Delete
296 Bytes
import gradio as gr
def respond(message, history):
# For demonstration, we will just echo the message back with a prefix
response = f"Yous said: {message}\
\n and I say I love learning AI Engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond).launch()