ysharma's picture
ysharma HF staff
Create app.py
5aaaee9 verified
raw
history blame contribute delete
183 Bytes
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()