Spaces:
Sleeping
Sleeping
File size: 183 Bytes
5aaaee9 |
1 2 3 4 5 6 7 |
import gradio as gr
with gr.Blocks() as demo:
chatbot = gr.Chatbot(examples=[{'content':"hi there!"}])
msg = gr.Textbox()
clear = gr.Button("Clear")
demo.queue().launch()
|