caarleexx commited on
Commit
beebd23
·
verified ·
1 Parent(s): d39ceb0

Update api/config.py

Browse files
Files changed (1) hide show
  1. api/config.py +2 -3
api/config.py CHANGED
@@ -33,8 +33,7 @@ class Settings(BaseSettings):
33
  LLM_TEMPERATURE: float = float(os.getenv("LLM_TEMPERATURE", "1.3"))
34
  LLM_MAX_TOKENS: int = int(os.getenv("LLM_MAX_TOKENS", "14000"))
35
 
36
- GEMINI_API_KEY: Optional[str] = os.getenv("GEMINI_API_KEY")
37
-
38
  MAX_WORKERS: int = int(os.getenv("MAX_WORKERS", "10"))
39
  BATCH_SIZE: int = int(os.getenv("BATCH_SIZE", "100"))
40
 
@@ -44,7 +43,7 @@ class Settings(BaseSettings):
44
  "*"
45
  ]
46
 
47
- LOG_LEVEL: str = os.getenv("LOG_LEVEL", "INFO")
48
 
49
  model_config = {
50
  "env_file": ".env",
 
33
  LLM_TEMPERATURE: float = float(os.getenv("LLM_TEMPERATURE", "1.3"))
34
  LLM_MAX_TOKENS: int = int(os.getenv("LLM_MAX_TOKENS", "14000"))
35
 
36
+
 
37
  MAX_WORKERS: int = int(os.getenv("MAX_WORKERS", "10"))
38
  BATCH_SIZE: int = int(os.getenv("BATCH_SIZE", "100"))
39
 
 
43
  "*"
44
  ]
45
 
46
+ LOG_LEVEL: str = os.getenv("LOG_LEVEL", "DEBUG")
47
 
48
  model_config = {
49
  "env_file": ".env",