import gradio as gr def respond(message, history): # For demonstration, we will just echo the message back with a prefix response = f"Yous said: {message}\ \n and I say I love learning AI Engineering with SuperDataScience!" return response gr.ChatInterface(fn=respond).launch()