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, )