gradio/demo/chatbot_component/run.py
2023-07-07 12:44:16 -04:00

6 lines
149 B
Python

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