File size: 318 Bytes
938bcee dac2574 938bcee dac2574 938bcee dac2574 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import gradio as gr
# Access Hugging Face secret from the environment
hf_token = os.environ.get('pass') # 'pass' is the name of the secret you set
# Load the private Space using the secret
demo = gr.load("peymoon/test", hf_token=hf_token, src="spaces")
# Launch the public-facing interface
demo.launch()
|