my-first-space / app.py
mikemaca's picture
Update app.py
7c8d1a6 verified
Raw
History Blame Contribute Delete
226 Bytes
import gradio as gr
def respond(message,history):
response = f"You said: {message}\
\nAnd I say I love learn AI Engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond).launch()