my_first_space / app.py
2akinfo's picture
Upload app.py
5e1bed9 verified
Raw
History Blame Contribute Delete
221 Bytes
import gradio as gr
def respond(message, history):
response = "You said: {message}\
\nAnd I say I love leraning AI Engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond).launch()