Model - List Regex Entity Infos
获取有关应用程序的正则表达式实体模型的信息。
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/regexentities
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/regexentities?skip={skip}&take={take}
URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 |
|---|---|---|---|---|
|
app
|
path | True |
string (uuid) |
应用程序 ID。 |
|
Endpoint
|
path | True |
string |
支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。 |
|
version
|
path | True |
string |
版本 ID。 |
|
skip
|
query |
integer minimum: 0 |
要跳过的条目数。 默认值为 0。 |
|
|
take
|
query |
integer minimum: 0maximum: 500 |
要返回的条目数。 最大页面大小为 500。 默认值为 100。 |
请求头
| 名称 | 必需 | 类型 | 说明 |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
响应
| 名称 | 类型 | 说明 |
|---|---|---|
| 200 OK |
正则表达式实体模型信息的列表。 |
|
| Other Status Codes |
错误响应。 |
安全性
Ocp-Apim-Subscription-Key
类型:
apiKey
在:
header
示例
Successful Get Regex Entity Models request
示例请求
GET {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/regexentities?skip=0&take=100
示例响应
[
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "AirportCodeRegex",
"regexPattern": "[a-z]{3}",
"typeId": 8,
"readableType": "Regex Entity Extractor",
"roles": [
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "role 1"
},
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "role 2"
}
]
},
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "Guid regex",
"regexPattern": "[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{3}-[0-9A-F]{12}",
"typeId": 8,
"readableType": "Regex Entity Extractor",
"roles": []
}
]
定义
| 名称 | 说明 |
|---|---|
|
Entity |
实体提取程序角色 |
|
Error |
调用 API 上的作时出现错误响应。 |
|
Readable |
实体类型的全名。 |
|
Regex |
正则表达式实体提取器。 |
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 |
RegexEntityExtractor
正则表达式实体提取器。
| 名称 | 类型 | 说明 |
|---|---|---|
| id |
string (uuid) |
实体模型的 ID。 |
| name |
string |
实体模型的名称。 |
| readableType |
实体类型的全名。 |
|
| regexPattern |
string |
正则表达式实体模式。 |
| roles |
Pattern.Any 实体提取程序的列表。 |
|
| typeId |
integer |
实体模型的类型 ID。 |