import gradio as gr


def fn(message, history):
    return message


gr.ChatInterface(fn=fn).launch()