14 lines
595 B
Python
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"),
|
|
)
|