From 0d7f9e86e7352b55a7bf1cdabc3be8543e8a1e1c Mon Sep 17 00:00:00 2001 From: fanpt <320622572@qq.com> Date: Sun, 25 May 2025 18:08:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E5=8F=96=E5=87=BA=E6=96=87=E6=9C=AC?= =?UTF-8?q?=E7=89=87=E6=AE=B5=E7=9A=84=E6=84=8F=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TextIntentExtractor/TextIntentExtractor.txt | 47 +++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 TextIntentExtractor/TextIntentExtractor.txt diff --git a/TextIntentExtractor/TextIntentExtractor.txt b/TextIntentExtractor/TextIntentExtractor.txt new file mode 100644 index 0000000..ec121dc --- /dev/null +++ b/TextIntentExtractor/TextIntentExtractor.txt @@ -0,0 +1,47 @@ +# 提取出文本片段的意图 + +## 功能说明 +识别PDF文本内容中某一段落的意图类型 + +## 待处理文本 +{text} + +## 验证示例 + +```json +// 示例1: +输入: +{ + "text": "..." +} +输出: +{ + "IntentTypeList": ["...", "..."] +} + +// 示例2:文本意图无法识别 +输入: +{ + "text": "人生短短几个球" +} +输出: +{} +``` + +## 输出要求 + +1. 严格遵循 JSON 格式。 +2. 输出纯JSON格式,不要使用```json ```等任何Markdown标记包装 +3. 不需要解释,不需要说明,仅返回以下两种结果: + +匹配成功: +```json +{"IntentTypeList": ["...", "..."]} +``` +- 匹配失败: +```json +{} +``` + +3.每个意图标签必须独立表述,禁止使用“...和...”等连接词合并两个意图。 +./no\_think \ No newline at end of file