mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
6 lines
149 B
Python
6 lines
149 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Chatbot(value=[["Hello World","Hey Gradio!"],["❤️","😍"],["🔥","🤗"]])
|
|
|
|
demo.launch() |