Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pantareh
/
crm
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
crm
/
app.py
hanoch@raized.ai
initial
5483375
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
211 Bytes
import
os
from
dotenv
import
load_dotenv
import
gradio
as
gr
load_dotenv()
HF_TOKEN = os.getenv(
"HF_TOKEN"
)
demo = gr.load(name=
"spaces/pantareh/crm-private"
, hf_token = HF_TOKEN)
demo.launch(show_error=
True
)