VcRlAgent commited on
Commit
b27db4d
·
1 Parent(s): cd1c169

Debug retriever and search

Browse files
Files changed (1) hide show
  1. app/config.py +1 -1
app/config.py CHANGED
@@ -30,7 +30,7 @@ class Settings:
30
  # Server Configuration
31
  HOST: str = os.getenv("HOST", "0.0.0.0")
32
  PORT: int = int(os.getenv("PORT", 7860))
33
- LOG_LEVEL: str = os.getenv("LOG_LEVEL", "info")
34
 
35
  # CORS
36
  ALLOWED_ORIGINS: list = os.getenv("ALLOWED_ORIGINS", "http://localhost:5173").split(",")
 
30
  # Server Configuration
31
  HOST: str = os.getenv("HOST", "0.0.0.0")
32
  PORT: int = int(os.getenv("PORT", 7860))
33
+ LOG_LEVEL: str = os.getenv("LOG_LEVEL", "debug")
34
 
35
  # CORS
36
  ALLOWED_ORIGINS: list = os.getenv("ALLOWED_ORIGINS", "http://localhost:5173").split(",")