File size: 163 Bytes
b8c75ba
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from demo.app import demo


def main() -> None:
    demo.queue(default_concurrency_limit=3)
    demo.launch(max_threads=6)


if __name__ == "__main__":
    main()