我正在尝试将Google Assistant动作连接到Botium Box或botium-cli。
我按照Botium Connector中有关Google Assistant的所有步骤进行了说明。

当我尝试将生成的botium.json添加到Botium Box时,出现以下错误消息。

Chatbot connection failed - Loading Botium plugin failed


当我尝试在botium-cli中启动模拟器时,出现此错误

Error: Loading Botium plugin failed
at Validate.Validate.then (C:\Users\user\AppData\Roaming\npm\node_modules\botium-cli\node_modules\botium-core\src\containers\PluginConnectorContainer.js:59:15)


botium.json看起来像这样

{
  "botium": {
    "Capabilities": {
      "PROJECTNAME": "Botium Project Google Assistant",
      "CONTAINERMODE": "google-assistant",
      "GOOGLE_ASSISTANT_CLIENT_ID": "xxx",
      "GOOGLE_ASSISTANT_CLIENT_SECRET": "xxx",
      "GOOGLE_ASSISTANT_REFRESH_TOKEN": "xxx",
      "GOOGLE_ASSISTANT_TYPE": "authorized_user",
      "GOOGLE_ASSISTANT_START_UTTERANCE": "talk to xxx",
      "GOOGLE_ASSISTANT_END_UTTERANCE": "Cancel"
    }
  }
}

最佳答案

错误消息表明Botium无法加载Google Assistant连接器模块。

自1.1版以来,Google助手连接器已成为Botium Box的一部分,请参见release notes。它是Botium CLI 0.0.46的一部分。

请确认您至少安装了这些版本。如果版本合适,请以详细模式(--verbose)运行botium-cli并附加日志输出。

10-02 22:42