如何直接在dialogflow的嵌入式编辑器中创建实体数组?

时间:2018-12-14 15:44:36

标签: dialogflow chatbot

我们可以在Dialogflow上为实体上传CSV或JSON文件。
但是我想在Dialogflow的内联编辑器中为实体创建一个数组。

例如,

function hello(agent) {
  //[I want to make entities array in the function with API call]
  }

如何制作该数组?这是正确的吗?

add.entities({
  "entries": [{
      "synonyms": ["apple", "red apple"],
      "value": "apple"
    },
    {
      "value": "banana"
    }
  ],
  "name": "fruit"
})

非常感谢您。

0 个答案:

没有答案