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