import gradio as gr def respond(message, history): response = f"You said: {message}\ \nAnd I said sth else." return response gr.ChatInterface(fn=respond).launch()