File size: 370 Bytes
5c309a9
764c201
 
 
 
 
 
d97dfbb
 
 
8b2cc47
1
2
3
4
5
6
7
8
9
10
11
12
from trust_guard.ui import build_app


demo = build_app()


if __name__ == "__main__":
    # Spaces enables SSR by default. This app's stateful radio/button events do
    # not hydrate reliably behind the hosted Node proxy, so serve the normal
    # client-rendered Gradio app instead.
    demo.queue(default_concurrency_limit=1).launch(ssr_mode=False, show_error=True)