From 3d5ec7a13454cf8cd9f5c318edac7a89fd757e97 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Thu, 12 Feb 2026 09:35:59 -0700 Subject: [PATCH] updated to match new pydantic method --- agent/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agent/config.py b/agent/config.py index ffabac9..892bdbf 100644 --- a/agent/config.py +++ b/agent/config.py @@ -7,5 +7,4 @@ class Settings(BaseSettings): safedir: str = "./workspace" max_tokens: int = 500 - class Config: - env_file = ".env" + model_config = {"env_file": ".env"}