File size: 267 Bytes
9aeb1dd bb17715 0ec5bb2 410d25f 0ec5bb2 79fb3cd 0ec5bb2 |
1 2 3 4 5 6 7 8 9 10 11 |
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)
|