我的问题是关于如何将INTENT_CONFIDENCE设置为全局断言器,而不是将其放置在整个convos中。

我在botium.json配置文件中尝试了两种方法,但两种方法均无效:

在“ ASSERTERS”功能范围内,我尝试过:

  "INTENT_CONFIDENCE": 100 -- I have done the same but with "100"/ "100 %"




  "ref": "INTENT_CONFIDENCE",
  "val": "100"


错误看起来像

AppData\Roaming\npm\node_modules\botium-cli\node_modules\yargs\yargs.js:1133
      else throw err
           ^

Error: Failed to fetch package botium-asserter-undefined - { Error: Cannot find module 'botium-asserter-undefined'

最佳答案

这是要使用的JSON配置:

{
  "botium": {
    "Capabilities": {
      ...
      "ASSERTERS": [
        {
          "ref": "INTENT_CONFIDENCE",
          "src": "IntentConfidenceAsserter",
          "global": true,
          "args": {
            "expectedMinimum": 80
          }
        }
      ]
    }
  }
}

09-15 12:59