import gradio as gr def echo(message, history): return f"Echo: {message}" gr.ChatInterface( fn=echo, examples=["What is the capital of France?"], run_examples_on_click=False, cache_examples=False, ).launch()