Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
farukbera
/
create_ai_ad
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
farukbera
commited on
Nov 2, 2023
Commit
397161c
·
1 Parent(s):
daf0793
init
Browse files
Files changed (1)
hide
show
config.py
+8
-0
config.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from pydantic import BaseSettings
2
+
3
+
4
+
class Settings(BaseSettings):
5
+
huggingface_key: str = os.environ.get("huggingface_key")
6
+
7
+
8
+
settings = Settings()