test / app.py
Ali2206's picture
Update app.py
0ec5bb2 verified
raw
history blame
267 Bytes
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)