my-first-space / app.py
vaishjkumar's picture
Upload app.py
9304524 verified
Raw
History Blame Contribute Delete
222 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()