import gradio as gr | |
def echo(msg, history): | |
return history + [(msg, f"Echo: {msg}")] | |
with gr.Blocks() as app: | |
chatbot = gr.Chatbot(label="EchoBot", type="messages") | |
msg = gr.Textbox(label="Type a message") | |
msg.submit(echo, [msg, chatbot], chatbot) | |