Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
getaccesstoken
/
facebook
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
getaccesstoken
commited on
Aug 26, 2025
Commit
7909f26
·
verified
·
1 Parent(s):
434199c
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
hf_token = os.environ.get("HF_TOKEN")
5
+
private_space = os.environ.get("PRIVATE_SPACE")
6
+
demo = gr.load(private_space, hf_token=hf_token)
7
+
demo.launch()