编辑 r4
提醒 · r4
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
删除
用户输入
Anna 睡醒后提醒我给她换尿片。
expected_output JSON
{ "actions": [ { "type": "no_action", "payload": { "reason": "The user's request is event-based ('after wake up'), but the 'create_reminder' action requires a mandatory 'time' (HH:mm). Since there is no active sleep record in the context to estimate a wake-up time, the assistant cannot fulfill the request without further information." } } ], "reply": "好的。大概几点提醒您比较合适呢?我需要设定一个具体的时间。" }
设计备注
Prompt 片段
当用户请求基于模糊事件(如“睡醒后”)的提醒,而 schema 仅支持绝对时间且当前无相关进行中状态时,应使用 no_action 追问具体时间点。
备注
1. 意图冲突:用户希望根据动态事件触发提醒,但 action schema 强制要求 HH:mm 格式。2. 信息缺失:context 显示 Anna 上一次小睡已于 13:35 结束,当前系统没有进行中的睡眠记录,无法推算‘睡醒’的时间点。3. 处理逻辑:根据‘简洁’和‘不编造’原则,不应随意猜测时间(如 1 小时后),而是直接询问用户希望设定的具体时间。