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.

46 lines
940 B
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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