theprogrammablemind 7.12.3-beta.2 → 7.12.3-beta.3
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 +4 -1
- package/package.json +1 -1
package/client.js
CHANGED
@@ -2138,7 +2138,10 @@ function w (func) {
|
|
2138
2138
|
}
|
2139
2139
|
|
2140
2140
|
const knowledgeModule = async (...args) => {
|
2141
|
-
await knowledgeModuleImpl(...args).catch((e) =>
|
2141
|
+
await knowledgeModuleImpl(...args).catch((e) => {
|
2142
|
+
console.error(e)
|
2143
|
+
process.exit(-1)
|
2144
|
+
})
|
2142
2145
|
}
|
2143
2146
|
|
2144
2147
|
module.exports = {
|