File size: 450 Bytes
4446d89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

import gradio as gr
from gradio_hubquicksearch import HubQuicksearch


example = HubQuicksearch().example_value()

demo = gr.Interface(
    lambda x:x,
    HubQuicksearch(label="repo id from the hub"),  # interactive version of your component
    HubQuicksearch(),  # static version of your component
    # examples=[[example]],  # uncomment this line to view the "example version" of your component
)


if __name__ == "__main__":
    demo.launch()