LUIS 应用的电话号码预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
phonenumber
实体提取各种包括国家/地区代码在内的电话号码。 此实体已定型,因此不需要将陈述示例添加到应用程序。 仅在 en-us
区域性中支持 phonenumber
实体。
电话号码的类型
Phonenumber
托管在 Recognizers-text GitHub 存储库中
针对此预生成实体的解决方法
查询返回以下实体对象:
my mobile is 1 (800) 642-7676
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"phonenumber": [
"1 (800) 642-7676"
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"phonenumber": [
"1 (800) 642-7676"
],
"$instance": {
"phonenumber": [
{
"type": "builtin.phonenumber",
"text": "1 (800) 642-7676",
"startIndex": 13,
"length": 16,
"score": 1.0,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
以下示例演示了 builtin.phonenumber 实体解析。
"entities": [
{
"entity": "1 (800) 642-7676",
"type": "builtin.phonenumber",
"startIndex": 13,
"endIndex": 28,
"resolution": {
"score": "1",
"value": "1 (800) 642-7676"
}
}
]
后续步骤
了解有关百分比、数字和温度实体。