farukbera commited on
Commit
397161c
·
1 Parent(s): daf0793
Files changed (1) hide show
  1. config.py +8 -0
config.py ADDED
@@ -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()