File size: 613 Bytes
4d7a139 9678321 4d7a139 9136d21 4d7a139 a505335 1eea690 a505335 cc285ef 1447b1d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import os
import gradio as gr
#os.environ["HF_TOKEN"] = os.getenv('demo_gradioapp')
js_dark_theme = """
function refresh() {
const url = new URL(window.location);
if (url.searchParams.get('__theme') !== 'dark') {
url.searchParams.set('__theme', 'dark');
window.location.href = url.href;
}
}
"""
# For ithentication issue, always share https://pctseng-demo.hf.space
demo = gr.load("PCTseng/EFP_Demo", src="spaces", hf_token = os.getenv('demo_gradioapp'), js=js_dark_theme).render()
demo.queue().launch(auth=('demo',os.getenv('password')), share=True, ssr_mode=False, show_api=False) |