你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
LUIS 应用的 URL 预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
URL 实体提取带域名或 IP 地址的 URL。 此实体已定型,因此不需要将包含 URL 的示例陈述添加到应用程序。 仅在 en-us
区域性中支持 URL 实体。
URL 类型
URL 托管在 Recognizers-text GitHub 存储库
预构建 URL 实体解析
查询返回以下实体对象:
https://www.luis.ai is a great Azure AI services example of artificial intelligence
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"url": [
"https://www.luis.ai"
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"url": [
"https://www.luis.ai"
],
"$instance": {
"url": [
{
"type": "builtin.url",
"text": "https://www.luis.ai",
"startIndex": 0,
"length": 17,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
以下示例显示了 https://www.luis.ai 的解析是人工智能的一个良好 Azure AI 服务示例
"entities": [
{
"entity": "https://www.luis.ai",
"type": "builtin.url",
"startIndex": 0,
"endIndex": 17
}
]
后续步骤
了解序号、数字和温度实体。