decide_step
Decide whether to use cheap intuition or expensive deliberation for the current step based on task criticality, difficulty, progress, and context pollution.
Instructions
★核心:判断当前这一步该用 System1(直觉/便宜模型/单候选) 还是 System2(点燃/强模型/多候选/深推理)。调用方只需提供通用可观测量(都是 0~1):criticality_hint=这步表面多关键(错了毁全局?), difficulty_hint=表面多难, progress=任务进度位置, context_pollution=当前上下文窗口占用比(已用token/窗口)。返回 mode 及理由。这是元认知决策,与'做什么步骤'(skill)正交。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sessionId | Yes | ||
| criticality_hint | No | 0~1,这步表面关键度 | |
| difficulty_hint | No | 0~1,这步表面难度 | |
| progress | No | 0~1,在整个任务中的进度位置 | |
| context_pollution | No | 0~1,当前上下文占用比(真实量,强烈建议传) |