import gradio as gr def fn(message, history): return message gr.ChatInterface( fn=fn, cache_examples=True, cache_mode="lazy", examples=[["hey"], ["hello"]], type="messages", ).launch()