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()