File size: 150 Bytes
39b5977
 
7fb760d
39b5977
 
2bd197d
1
2
3
4
5
6
7
import gradio as gr

with gr.Blocks() as demo:
    gr.Chatbot(value=[["Hello World","Hey Gradio!"],["❤️","😍"],["🔥","🤗"]])

demo.launch()