From 5e9ef2809e522321dab404a70ec516ca76524a7e Mon Sep 17 00:00:00 2001 From: Roberto Musso Date: Sun, 22 Mar 2026 22:28:50 +0100 Subject: [PATCH] fix: add extra=ignore to monolith Settings for strangler fig compat --- app/config/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/config/settings.py b/app/config/settings.py index 796cdad..03c9906 100644 --- a/app/config/settings.py +++ b/app/config/settings.py @@ -29,7 +29,6 @@ class Settings(BaseSettings): CEREBRAS_API_KEY: str = "" LLM_MODEL: str = "gpt-4o" - LLM_ROUTER_MODEL: str = "gpt-4o-mini" LLM_EMBED_MODEL: str = "text-embedding-3-small" # GitHub Copilot OAuth token storage directory. @@ -54,7 +53,9 @@ class Settings(BaseSettings): ENV: Literal["dev", "prod"] = "dev" - model_config = SettingsConfigDict(env_file=".env", env_file_encoding="utf-8") + model_config = SettingsConfigDict( + env_file=".env", env_file_encoding="utf-8", extra="ignore" + ) settings = Settings()