LUIS 应用的序号 V2 预生成实体
重要
LUIS 将于 2025 年 10 月 1 日停用,从 2023 年 4 月 1 日开始,你将无法创建新的 LUIS 资源。 建议将 LUIS 应用程序迁移到对话语言理解,以便从持续的产品支持和多语言功能中受益。
序号 V2 扩展了序号以提供相关引用,如 next
、last
和 previous
。 这些无法使用序号预生成实体提取。
序号 V2 预生成实体的解析
查询返回以下实体对象:
what is the second to last choice in the list
以下 JSON 的 verbose
参数设置为 false
:
"entities": {
"ordinalV2": [
{
"offset": -1,
"relativeTo": "end"
}
]
}
以下 JSON 的 verbose
参数设置为 true
:
"entities": {
"ordinalV2": [
{
"offset": -1,
"relativeTo": "end"
}
],
"$instance": {
"ordinalV2": [
{
"type": "builtin.ordinalV2.relative",
"text": "the second to last",
"startIndex": 8,
"length": 18,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
以下示例展示了 builtin.ordinalV2 实体的解析。
"entities": [
{
"entity": "the second to last",
"type": "builtin.ordinalV2.relative",
"startIndex": 8,
"endIndex": 25,
"resolution": {
"offset": "-1",
"relativeTo": "end"
}
}
]
后续步骤
了解百分比、电话号码和温度实体。