Files
Agents/l4_mystery_gate_agent/agent.py
2026-04-11 11:57:15 +08:00

14 lines
595 B
Python

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"),
)