abidlabs's picture
abidlabs HF staff
Upload folder using huggingface_hub
24e9244
raw
history blame contribute delete
No virus
342 Bytes
import gradio as gr
from gradio_test import Test
example = Test().example_inputs()
demo = gr.Interface(
lambda x:x,
Test(), # interactive version of your component
Test(), # static version of your component
# examples=[[example]], # uncomment this line to view the "example version" of your component
)
demo.launch()