From a8e42d25d5a8027cbe29bef0beddb639b1758b53 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Wed, 4 Mar 2026 15:10:25 -0700 Subject: [PATCH] revert back to correct default --- agent/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/config.py b/agent/config.py index 53f7847..c29d390 100644 --- a/agent/config.py +++ b/agent/config.py @@ -8,7 +8,7 @@ PROJECT_ROOT = Path(__file__).parent.parent class Settings(BaseSettings): anthropic_api_key: str model: str = "claude-sonnet-4-5-20250929" - safedir: str = "/home/ewpt3ch/dev-agent/secure-agent" + safedir: str = "./workspace" max_tokens: int = 500 model_config = {"env_file": PROJECT_ROOT / ".env"}