My-First-Sapce / app.py
SirDrG's picture
Update app.py
4ccde79 verified
Raw
History Blame Contribute Delete
219 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(respond).launch()