File size: 307 Bytes
e7ea3f7
 
 
070e862
e7ea3f7
bb60e60
 
 
 
 
 
d277e7e
e7ea3f7
 
bb60e60
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
import gradio as gr

PRIVATE_SPACE = "Hugrun/Hugrun_Virtual_CBT_Therapist_Research_Prototype"

demo = gr.load(
    PRIVATE_SPACE,
    src="spaces",
    token=os.environ["HF_TOKEN"],
)

demo.queue()

if __name__ == "__main__":
    demo.launch(
        ssr_mode=False,
        show_error=True,
    )