编辑 f1
宝宝喂养 · f1
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刚刚喝了 100ml 奶
expected_output JSON
{ "actions": [ { "type": "create_baby_feeding_record", "payload": { "amount_ml": 100, "baby_name": "Anna", "feeding_type": "bottle", "time": "2026-05-20T15:00:00+08:00" } } ], "reply": "好的,记下了,Anna 刚刚喝了 100ml 奶。" }
设计备注
Prompt 片段
当用户提及‘奶’或‘喝奶’且 context 中有明确的 feeding_profile 时,应根据 profile 自动填充 feeding_type(如 bottle 或 nursing)。对于‘刚刚’这类模糊时间词,应结合 context.current_time 转换为标准 ISO 时间戳。
备注
用户输入明确了奶量 100ml。根据 context 中的 feeding_profile (bottle_breastmilk),将 feeding_type 映射为 schema 允许的 'bottle'。时间根据 current_time 处理。此轮对话虽然 context 中显示全天记录不完整,但对于用户明确发起的当前行为记录不产生阻碍。