my-first-space / app.py
chigo5's picture
Update app.py
c8f6b8e verified
Raw
History Blame Contribute Delete
236 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()