File size: 278 Bytes
b8ad9ec
 
dec9e7d
 
 
b8ad9ec
 
dec9e7d
 
1
2
3
4
5
6
7
8
9
import gradio as gr

load_chat():
    return [("input","output")]

with gr.Blocks() as app:
    chatbot=gr.Chatbot(show_label=False, show_share_button=True, show_copy_button=True, likeable=True, layout="panel", height="800px")
    app.onload(load_chat,None,chatbot)
app.launch()