File size: 246 Bytes
91394e0
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from interface import GradioInterface


def main():
    demo = GradioInterface(
        options_config="config/options.yaml", default_config="config/default.yaml"
    ).create_interface()
    demo.launch()


if __name__ == "__main__":
    main()