moraxgiga commited on
Commit
4f67457
·
verified ·
1 Parent(s): c25b7ee

Update TextGen/ConfigEnv.py

Browse files
Files changed (1) hide show
  1. TextGen/ConfigEnv.py +16 -16
TextGen/ConfigEnv.py CHANGED
@@ -1,19 +1,19 @@
1
- """Config class for handling env variables.
2
- """
3
- from functools import lru_cache
4
- from pydantic import BaseSettings
5
 
6
- class Settings(BaseSettings):
7
- APP_ID: str
8
- USER_ID: str
9
- MODEL_ID: str
10
- CLARIFAI_PAT: str
11
- MODEL_VERSION_ID: str
12
 
13
- class Config:
14
- env_file = '.env'
15
 
16
- @lru_cache()
17
- def get_settings():
18
- return Settings()
19
- config = get_settings()
 
1
+ # """Config class for handling env variables.
2
+ # """
3
+ # from functools import lru_cache
4
+ # from pydantic import BaseSettings
5
 
6
+ # class Settings(BaseSettings):
7
+ # APP_ID: str
8
+ # USER_ID: str
9
+ # MODEL_ID: str
10
+ # CLARIFAI_PAT: str
11
+ # MODEL_VERSION_ID: str
12
 
13
+ # class Config:
14
+ # env_file = '.env'
15
 
16
+ # @lru_cache()
17
+ # def get_settings():
18
+ # return Settings()
19
+ # config = get_settings()