changed workspace to be outside of the rundir for the agent

This commit is contained in:
2026-03-04 15:03:01 -07:00
parent 5a04debd8f
commit b86f26eb27
+1 -1
View File
@@ -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"}