update: 日志级别改为DEBUG,推理步数改为40
All checks were successful
构建并部署 AI Agent 服务 / deploy (push) Successful in 5m37s

This commit is contained in:
2026-05-01 10:49:19 +08:00
parent f44050d777
commit f95f5cb8f5
2 changed files with 4 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ class MainGraphState:
# ========== React 推理专用字段 ========== # ========== React 推理专用字段 ==========
reasoning_step: int = 0 # 当前推理步数 reasoning_step: int = 0 # 当前推理步数
max_steps: int = 10 # 最大推理步数≤10 max_steps: int = 40 # 最大推理步数
last_action: str = "" # 上一步动作 last_action: str = "" # 上一步动作
reasoning_history: List[Dict[str, Any]] = field(default_factory=list) # 推理历史 reasoning_history: List[Dict[str, Any]] = field(default_factory=list) # 推理历史

View File

@@ -54,9 +54,9 @@ services:
# ========================================================================= # =========================================================================
# 日志调试配置(可通过 .env 覆盖) # 日志调试配置(可通过 .env 覆盖)
# ========================================================================= # =========================================================================
- LOG_LEVEL=${LOG_LEVEL:-WARNING} - LOG_LEVEL=${LOG_LEVEL:-DEBUG}
- DEBUG=${DEBUG:-false} - DEBUG=${DEBUG:-true}
- ENABLE_GRAPH_TRACE=${ENABLE_GRAPH_TRACE:-false} - ENABLE_GRAPH_TRACE=${ENABLE_GRAPH_TRACE:-true}
# ========================================================================= # =========================================================================
# 应用行为配置 # 应用行为配置