File size: 1,049 Bytes
2b2a944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# False Positive Few-Shot Examples
# (Non-actionable messages or pure notifications)
# 请用实际的、有代表性的例子替换以下内容

## Example 1 (纯粹通知)
Input Message:
{"123456789":"[通知]您的账户安全设置已更新。"}

Expected Output JSON:
```json
{"123456789":{"is_todo": false, "end_time":"null","location":"null","todo_content":"账号安全更新", "urgency": "unimportant"}}
```

## Example 2 (垃圾/广告信息)
Input Message:
{"987654321":"【优惠促销】限时抢购!全场商品低至一折,点击链接查看详情:xxx.com"}

Expected Output JSON:
```json
{"987654321":{"is_todo": false, "end_time":"null","location":"null","todo_content":"广告推销", "urgency": "unimportant"}}
```

## Example 3 (已完成/过期信息)
Input Message:
{"112233445":"[提醒]您昨天预约的会议已结束。"}

Expected Output JSON:
```json
{"112233445":{"is_todo": false, "end_time":"null","location":"null","todo_content":"过期内容", "urgency": "unimportant"}}
```