如何从 Wit.Ai 中的 HTTP GET /message 请求中获取实体的位置
How can a get the position of an entity from a HTTP GET /message request in Wit.Ai
Wit.Ai HTTP API Documentation 为 POST /converse 请求提供了一个响应示例,其中 return 是实体的 "start" 和 "end" 位置,如如下所示:
{
"type": "merge",
"entities": {"location": [{"body": "Brussels",
"value": {"type": "value",
"value": "Brussels",
"suggested": true},
"start": 11,
"end": 19,
"entity": "location"}]},
"confidence": 1
}
还有一个已弃用的 GET https://api.wit.ai/messages/$MSG_ID 请求 returns 相同的信息。
有没有办法将 GET /message 请求配置为 return "start" 和 "end" 属性?
谢谢
您可以在请求中使用 verbose=true 来获取实体的位置。
Wit.Ai HTTP API Documentation 为 POST /converse 请求提供了一个响应示例,其中 return 是实体的 "start" 和 "end" 位置,如如下所示:
{
"type": "merge",
"entities": {"location": [{"body": "Brussels",
"value": {"type": "value",
"value": "Brussels",
"suggested": true},
"start": 11,
"end": 19,
"entity": "location"}]},
"confidence": 1
}
还有一个已弃用的 GET https://api.wit.ai/messages/$MSG_ID 请求 returns 相同的信息。
有没有办法将 GET /message 请求配置为 return "start" 和 "end" 属性?
谢谢
您可以在请求中使用 verbose=true 来获取实体的位置。