增加五位助教老师

This commit is contained in:
2026-04-11 11:57:15 +08:00
parent 3555a2d582
commit bc0a8b49ad
16 changed files with 1690 additions and 0 deletions

View File

View File

@@ -0,0 +1,13 @@
from agent_base.agent_base import HuiYuBaseAgent
from common.models import minimax_model
from common.profile_loader import load_profile
# ============================================================
# L4 助教 — 众妙之门老师(地面课实操层)
# ============================================================
root_agent = HuiYuBaseAgent(
name="l4_mystery_gate_agent",
model=minimax_model,
description="L4 实操助教,擅长临界觉察法、五位置测试、核心数据采集与解析,管理场域能量。",
instruction=load_profile("l4_mystery_gate.md"),
)