编辑 r11
提醒 · r11
Actions
上下文
返回列表
编号
一级分类
宝宝睡眠
宝宝喂养
排泄/尿片
吸奶
婴儿身高体重
补剂
提醒
婴儿健康状态/体温/吐奶
妈妈状态/情绪/睡觉/体重/健康
子分类
优先级
P0
P1
P2
P3
状态
草稿
已生成
已确认
待定
上下文
无上下文
Anna 2026-05-20 下午上下文
可用 Actions
选择这个 case 生成时允许或期望使用的 action schema,可多选。
新建 action
cancel_reminder
取消提醒
create_baby_feeding_record
创建宝宝喂养记录
create_baby_health_record
创建宝宝健康记录
create_baby_sleep_record
创建宝宝睡眠记录
create_diaper_record
创建尿片/排泄记录
create_growth_record
创建成长记录
create_milk_inventory_record
创建母乳库存记录
create_mother_status_record
创建妈妈状态记录
create_pumping_record
创建吸奶记录
create_reminder
创建提醒
create_supplement_record
创建补剂记录
no_action
不执行操作
query_records
查询记录
query_reminders
查询提醒
update_record
修改记录
update_reminder
修改提醒
对话
一轮 = 用户输入 + expected_output JSON
添加轮次
Turn 1
删除
用户输入
把刚才那个吸奶提醒改成 4 小时后。
expected_output JSON
{ "actions": [ { "type": "no_action", "payload": { "reason": "The user referenced a 'pumping reminder' (吸奶提醒) that does not exist in the provided context (recent_records or recent_dialogue). Without a target reminder ID or previous reminder reference, the update_reminder action cannot be executed." } } ], "reply": "抱歉,我没找到你提到的那个吸奶提醒。需要我帮你新建一个 4 小时后的提醒吗?" }
设计备注
Prompt 片段
当用户尝试修改提醒但上下文中不存在匹配的目标(如‘刚才那个吸奶提醒’但在记录中缺失)时,应使用 no_action 并温和地向用户澄清或询问是否需要新建,而不是编造 ID 执行操作。
备注
用户提到‘刚才那个吸奶提醒’,但 context 中并没有任何关于吸奶(pumping)的提醒设置,只有喂奶(feeding)的记录。这种情况下 Agent 无法定位 update_reminder 的 target,故采用 no_action 追问。这也测试了 Agent 区分‘记录’与‘提醒’、‘喂奶’与‘吸奶’的能力。