LUIS 应用的 PersonName 预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
预构建 personName 实体会检测人的姓名。 此实体已定型,因此不需要将包含 personName 的陈述示例添加到应用程序意向中。 英语和中文区域性支持 personName 实体。
解析 personName 实体
查询返回以下实体对象:
Is Jill Jones in Cairo?
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"personName": [
"Jill Jones"
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"personName": [
"Jill Jones"
],
"$instance": {
"personName": [
{
"type": "builtin.personName",
"text": "Jill Jones",
"startIndex": 3,
"length": 10,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
],
}
}
以下示例显示了 builtin.personName 实体的解析。
"entities": [
{
"entity": "Jill Jones",
"type": "builtin.personName",
"startIndex": 3,
"endIndex": 12
}
]
后续步骤
了解电子邮件、数字和序号实体。