import gradio as gr def respond(message, history): return f"Ты сказал: {message}" gr.ChatInterface(fn=respond, title="Flare Chat").launch()