test1 / app.py
tuladharbr's picture
Upload app.py
99a5269 verified
Raw
History Blame Contribute Delete
228 Bytes
import gradio as gr
def respond(message, history):
response = f"You said: {message} \n And I say I love learning AI Engineering with SuperDataScience!"
return response
gr.ChatInterface(fn=respond). launch()