我在JSON中有一个决策树。
现在,我正在我网站的流程中使用该JSON树。
树的结构类似于下面的
{
"id": 1,
"name": "Select the vehicle type",
"children": [{
"id": "2",
"name": "Show the Cars",
"parent": "1",
"children": [{
"id": 3,
"name": "BMW",
"parent": 2
}]
}]
}
现在,我想使用树并使用 API.AI 或 Wit.AI 转换为自然语言处理流程。
我该怎么做?有没有工具可以做到这一点?或者唯一的方法是再次手动创建流程?
答案 0 :(得分:0)
API.AI(和wit.ai)处理自然语言。在使用API.AI之前,您必须将查询转换为自然语言。完成后,您可以使用/ query端点将自然语言发送到API.AI:https://api.ai/docs/reference/agent/query