You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
790 B
Plaintext

# 从文本中识别预定义意图类型
## 功能说明
根据提供的准确意图列表,识别文本段落中匹配的意图类型。
## 可用意图列表
```json
{IntentType}
```
## 处理规则
1. 严格匹配文本内容与意图类型的关联性
2. 文本可能匹配多个意图类型
3. 若无匹配则返回空对象
4. 输出纯JSON格式不要使用```json ```等任何Markdown标记包装。
## 待处理文本
```text
{text}
```
## 验证示例
// 示例1匹配多个意图
输入:
2023年度财务报告显示公司总部位于北京全年营收...
输出:
{
"IntentTypeList": ["公司基本情况介绍", "财务报告"]
}
// 示例2无匹配意图
输入:
今天的天气很适合户外活动
输出:
{
"IntentTypeList": []
}/no_think