你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Model - List Custom Prebuilt Models

获取此应用程序版本中使用的所有预生成意向和实体模型信息。

GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/customprebuiltmodels

URI 参数

名称 必需 类型 说明
appId
path True

string (uuid)

应用程序 ID。

Endpoint
path True

string

支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。

versionId
path True

string

版本 ID。

请求头

名称 必需 类型 说明
Ocp-Apim-Subscription-Key True

string

响应

名称 类型 说明
200 OK

CustomPrebuiltModel[]

返回所有预生成模型及其表示形式的列表。

Other Status Codes

ErrorResponse

错误响应。

安全性

Ocp-Apim-Subscription-Key

类型: apiKey
在: header

示例

Successful Get Custom Prebuilt Domain Models request

示例请求

GET {Endpoint}/luis/api/v2.0/apps/363187f1-c573-46b3-bc4c-ae01d686e68e/versions/1.0/customprebuiltmodels

示例响应

[
  {
    "id": "1aa813da-8d36-4d16-bb13-d6f193290fea",
    "name": "Calendar.Find",
    "typeId": 0,
    "readableType": "Intent Classifier",
    "customPrebuiltDomainName": "Calendar",
    "customPrebuiltModelName": "Find"
  },
  {
    "id": "d02b2e38-6b3c-412e-bf9e-f6770a40c9a0",
    "name": "Calendar.Location",
    "typeId": 1,
    "readableType": "Entity Extractor",
    "customPrebuiltDomainName": "Calendar",
    "customPrebuiltModelName": "Location",
    "roles": [
      {
        "id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
        "name": "role 1"
      },
      {
        "id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
        "name": "role 2"
      }
    ]
  }
]

定义

名称 说明
CustomPrebuiltModel

自定义预生成模型。

EntityRole

实体提取程序角色

ErrorResponse

调用 API 上的作时出现错误响应。

ReadableType

实体类型的全名。

CustomPrebuiltModel

自定义预生成模型。

名称 类型 说明
customPrebuiltDomainName

string

域名。

customPrebuiltModelName

string

意向名称或实体名称。

id

string (uuid)

实体模型的 ID。

name

string

实体模型的名称。

readableType

ReadableType

实体类型的全名。

roles

EntityRole[]

Pattern.Any 实体提取程序的列表。

typeId

integer

实体模型的类型 ID。

EntityRole

实体提取程序角色

名称 类型 说明
id

string (uuid)

实体角色 ID。

name

string

实体角色名称。

ErrorResponse

调用 API 上的作时出现错误响应。

名称 类型 说明
errorType

string

ReadableType

实体类型的全名。

说明
Entity Extractor
Hierarchical Entity Extractor
Hierarchical Child Entity Extractor
Composite Entity Extractor
List Entity Extractor
Prebuilt Entity Extractor
Intent Classifier
Pattern.Any Entity Extractor
Closed List Entity Extractor
Regex Entity Extractor