미리 빌드된 geographyV2 엔터티는 위치를 검색합니다. 이 엔터티를 이미 학습했기 때문에 GeographyV2를 애플리케이션 의도에 포함하는 예제 발화를 추가할 필요가 없습니다. GeographyV2 엔터티는 영어 문화권에서 지원됩니다.
지리적 위치에는 하위 유형이 있습니다.
쿼리에 대해 반환되는 엔터티 개체는 다음과 같습니다.
다음 JSON의 verbose
매개 변수가 false
로 설정되어 있습니다.
"entities": {
"geographyV2": [
{
"value": "the sphinx",
"type": "poi"
},
{
"value": "gizah",
"type": "city"
},
{
"value": "egypt",
"type": "countryRegion"
},
{
"value": "africa",
"type": "continent"
},
{
"value": "texas",
"type": "state"
}
]
}
앞의 JSON poi
에서 관심 지점의 약어입니다.
다음 JSON의 verbose
매개 변수가 true
로 설정되어 있습니다.
"entities": {
"geographyV2": [
{
"value": "the sphinx",
"type": "poi"
},
{
"value": "gizah",
"type": "city"
},
{
"value": "egypt",
"type": "countryRegion"
},
{
"value": "africa",
"type": "continent"
},
{
"value": "texas",
"type": "state"
}
],
"$instance": {
"geographyV2": [
{
"type": "builtin.geographyV2.poi",
"text": "the sphinx",
"startIndex": 18,
"length": 10,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.city",
"text": "gizah",
"startIndex": 32,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.countryRegion",
"text": "egypt",
"startIndex": 38,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.continent",
"text": "africa",
"startIndex": 47,
"length": 6,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
},
{
"type": "builtin.geographyV2.state",
"text": "texas",
"startIndex": 72,
"length": 5,
"modelTypeId": 2,
"modelType": "Prebuilt Entity Extractor",
"recognitionSources": [
"model"
]
}
]
}
}
다음 예제에서는 builtin.geographyV2 엔터티의 해상도를 보여줍니다.
"entities": [
{
"entity": "the sphinx",
"type": "builtin.geographyV2.poi",
"startIndex": 18,
"endIndex": 27
},
{
"entity": "gizah",
"type": "builtin.geographyV2.city",
"startIndex": 32,
"endIndex": 36
},
{
"entity": "egypt",
"type": "builtin.geographyV2.countryRegion",
"startIndex": 38,
"endIndex": 42
},
{
"entity": "africa",
"type": "builtin.geographyV2.continent",
"startIndex": 47,
"endIndex": 52
},
{
"entity": "texas",
"type": "builtin.geographyV2.state",
"startIndex": 72,
"endIndex": 76
},
{
"entity": "carol",
"type": "builtin.personName",
"startIndex": 0,
"endIndex": 4
}
]