From b86f26eb2768ff56048874e3f28817c8cbfe7cc6 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Wed, 4 Mar 2026 15:03:01 -0700 Subject: [PATCH] changed workspace to be outside of the rundir for the agent --- agent/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/config.py b/agent/config.py index c29d390..53f7847 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 = "./workspace" + safedir: str = "/home/ewpt3ch/dev-agent/secure-agent" max_tokens: int = 500 model_config = {"env_file": PROJECT_ROOT / ".env"}