mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame contribute delete
255 Bytes
import gradio as gr
from gradio_app import app
with gr.Blocks() as demo:
gr.Markdown("# Change the value (keep it JSON) and the front-end will update automatically.")
app(value={"message": "Hello from Gradio!"}, label="Static")
demo.launch()