fix: default agent mode to enabled

This commit is contained in:
zhayujie
2026-05-21 11:14:19 +08:00
parent 16b7271826
commit 7c35df7a82
3 changed files with 3 additions and 3 deletions

View File

@@ -366,7 +366,7 @@ def load_config():
logger.info("[INIT] Model: {}".format(config.get("model", "unknown")))
# Agent模式信息
if config.get("agent", False):
if config.get("agent", True):
workspace = config.get("agent_workspace", "~/cow")
logger.info("[INIT] Mode: Agent (workspace: {})".format(workspace))
else: