mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
6 lines
194 B
Python
6 lines
194 B
Python
|
import gradio as gr
|
||
|
|
||
|
with gr.Blocks() as demo:
|
||
|
gr.JSON(value={"Key 1": "Value 1", "Key 2": {"Key 3": "Value 2", "Key 4": "Value 3"}, "Key 5": ["Item 1", "Item 2", "Item 3"]})
|
||
|
|
||
|
demo.launch()
|