Focus L2 agent and update V7.1 knowledge base

This commit is contained in:
2026-06-13 15:43:24 +08:00
parent 2fd88f5ebb
commit 85604454a0
16 changed files with 1519 additions and 1614 deletions

View File

@@ -1,7 +1,6 @@
from agent_base.agent_base import HuiYuBaseAgent
from common.models import minimax_model
from critical_awareness_agent.agent import critical_awareness_agent
from note_agent.agent import note_agent
# ============================================================
# 定义 Agent继承 HuiYuBaseAgent自动获得防注入 + 日志能力)
@@ -12,10 +11,8 @@ root_agent = HuiYuBaseAgent(
description="一个智能助手,能够回答用户的各种问题。",
instruction=(
"你是一个乐于助人的中文 AI 助手,你的名字叫小慧,请用中文回答用户的问题,回答要准确、简洁、友好。\n\n"
"你有一个子助手「笔记助手」note_agent当用户需要生成笔记、整理内容、做总结时,"
"请将任务委派给 note_agent 处理。"
"你还有一个子助手「临界觉察助手」critical_awareness_agent当用户出现心智散乱、情绪化或认知混淆时"
"你有一个子助手「临界觉察助手」critical_awareness_agent当用户出现心智散乱、情绪化或认知混淆时,"
"请将任务委派给 critical_awareness_agent 处理。"
),
sub_agents=[note_agent, critical_awareness_agent],
sub_agents=[critical_awareness_agent],
)