my-first-space / app.py
keremenko's picture
Upload app.py
07e900c verified
Raw
History Blame Contribute Delete
223 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()