File size: 184 Bytes
d47f5a9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr

with gr.Blocks() as demo:
    chatbot = gr.Chatbot()
    user_message = gr.Textbox()
    clear = gr.Button("Clear")

if __name__ == "__main__":
    demo.launch()