theprogrammablemind 7.5.8-beta.89 → 7.5.8-beta.90
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 -1
- package/package.json +1 -1
package/client.js
CHANGED
@@ -434,7 +434,13 @@ const processContextsB = ({ config, hierarchy, semantics, generators, json, isTe
|
|
434
434
|
if (isInstance) {
|
435
435
|
console.log('error', e.error)
|
436
436
|
}
|
437
|
-
contextPrime = semantics.apply(args, {
|
437
|
+
contextPrime = semantics.apply(args, {
|
438
|
+
marker: 'error',
|
439
|
+
context,
|
440
|
+
text: e ? e.toString() : 'not available',
|
441
|
+
reason: e.reason,
|
442
|
+
error: e.stack || e.error
|
443
|
+
})
|
438
444
|
}
|
439
445
|
}
|
440
446
|
if (contextPrime.controlRemove) {
|