JoPmt's picture
Upload folder using huggingface_hub
53788a1 verified
raw
history blame contribute delete
410 Bytes
import gradio as gr
from Testcomponent import Testcomponent
example = Testcomponent().example_value()
demo = gr.Interface(
lambda x:x,
Testcomponent(), # interactive version of your component
Testcomponent(), # static version of your component
# examples=[[example]], # uncomment this line to view the "example version" of your component
)
if __name__ == "__main__":
demo.launch()