我正在尝试通过 git bash 将 botium 连接到我的 lex 机器人。我的 botium.json 看起来像这样
{
"botium": {
"Capabilities": {
"PROJECTNAME": "My Bot Test",
"CONTAINERMODE": "lex",
"LEX_REGION": "us-east-1",
"LEX_ACCESS_KEY_ID": "mykeyID",
"LEX_SECRET_ACCESS_KEY": "mysecretaccesskey",
"LEX_PROJECT_NAME": "myBotName",
"LEX_PROJECT_ALIAS": "myBotNameAlias"
},
"Sources": {},
"Envs": {}
}
}
我尝试运行以下命令
botium-cli nlpextract --config botium.json --convos /output --verbose
它给了我这个错误
2020-03-11T00:03:23.566Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:23.567Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:23.568Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file ./botium.json
2020-03-11T00:03:25.157Z botium-BotDriver Loaded Botium configuration file botium.json
2020-03-11T00:03:25.158Z botium-BotDriver Changed capability CONFIG to "botium.json" using environment variables.
Failed to extract utterances: connect ETIMEDOUT 52.5.205.58:443
这似乎不是正确的 IP,但我不知道如何设置连接。当我运行命令时,我已经通过 git bash 登录到我的 AWS CLI 帐户,所以我认为它应该立即连接。但是连接总是超时。找不到任何可以帮助我的文档。