theprogrammablemind 7.7.0-beta.6 → 7.7.0-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.js +7 -3
- 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
|
1199
|
-
for ([
|
1200
|
-
console.log(` ${JSON.stringify(
|
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
|
}
|