control_action
在 continue、change_assumption 和 stop_and_escalate 中选择控制动作。
STATE 设计
只提供完成判断所需的上下文,避免提交密码、密钥、无授权个人数据或与问题无关的长文本。
OUTPUT 设计
每个问题都使用完整 instructions,ID 仅用于关联响应,不能承担问题语义。
可复现输入
{
"goal": "Find the invoice for order A-1042",
"assumption": "the invoice must be in the email inbox",
"recent_actions": ["search_email", "search_archive", "search_spam"],
"results": ["not_found", "not_found", "not_found"]
}问题设计
control_action在 continue、change_assumption 和 stop_and_escalate 中选择控制动作。
semantic_loop判断近期动作是否基于同一未验证假设形成语义循环。
案例来源
本页借鉴 Ashutosh (@ashutoshftw) 公开分享的场景。State、问题、候选项和执行边界均由 TypeDecide 重新设计;来源链接只用于溯源,不构成准确率或性能背书。
执行边界
熔断器应配合硬性步数、时间和费用上限;任何一项达到阈值都要停止,不应只依赖语义判断。