ToDoAgent / FalsePositive_few_shot.txt
Siyu Wang
No DB interaction version
2b9f32a
# 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"}}
```