gradio/demo/chatbot_component/run.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
150 B
Python
Raw Normal View History

import gradio as gr
2023-07-08 00:44:16 +08:00
with gr.Blocks() as demo:
gr.Chatbot(value=[["Hello World","Hey Gradio!"],["❤️","😍"],["🔥","🤗"]])
demo.launch()