theprogrammablemind_4wp 7.7.0-beta.7 → 7.7.0-beta.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/client.js +7 -3
  2. package/package.json +1 -1
package/client.js CHANGED
@@ -1195,9 +1195,9 @@ const defaultInnerProcess = (config, errorHandler, responses) => {
1195
1195
  }
1196
1196
 
1197
1197
  if (responses.explain_priorities) {
1198
- console.log("Explain Priorities (listed from lower priority to higher priority)")
1199
- for ([inputss, outpus, reason] of responses.explain_priorities) {
1200
- console.log(` ${JSON.stringify(inputss)} reason: ${reason}`)
1198
+ console.log("Explain Priorities")
1199
+ for ([inputs, output, reason] of responses.explain_priorities) {
1200
+ console.log(` inputs: ${JSON.stringify(inputs)} output: ${JSON.stringify(output)} reason: ${reason}`)
1201
1201
  }
1202
1202
  }
1203
1203
  const objects = config.get('objects').namespaced[config.uuid]
@@ -1643,6 +1643,10 @@ const knowledgeModuleImpl = async ({
1643
1643
  config.config.debug = true
1644
1644
  }
1645
1645
 
1646
+ if (args.reset) {
1647
+ config.config.skip_cache = true
1648
+ }
1649
+
1646
1650
  if (args.explainPriorities) {
1647
1651
  config.config.explain_priorities = true
1648
1652
  }
package/package.json CHANGED
@@ -65,6 +65,6 @@
65
65
  "json-stable-stringify": "^1.0.1",
66
66
  "node-fetch": "^2.6.1"
67
67
  },
68
- "version": "7.7.0-beta.7",
68
+ "version": "7.7.0-beta.8",
69
69
  "license": "ISC"
70
70
  }