aliabd's picture
aliabd HF Staff
Upload folder using huggingface_hub
7348088
raw
history blame
194 Bytes
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()