theprogrammablemind 9.1.1-beta.21 → 9.1.1-beta.23
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/package.json +1 -1
- package/src/configHelpers.js +3 -0
package/package.json
CHANGED
package/src/configHelpers.js
CHANGED
@@ -136,6 +136,9 @@ const setupArgs = (args, config, logs, hierarchy, uuidForScoping) => {
|
|
136
136
|
return config.getGenerators(logs).apply(addAssumed(args, a, { paraphrase: false, isResponse: true }), { ...c, paraphrase: false, isResponse: true })
|
137
137
|
}
|
138
138
|
args.e = (c) => {
|
139
|
+
if (!c) {
|
140
|
+
return
|
141
|
+
}
|
139
142
|
return config.getEvaluator(args.s, args.calls, logs, c)
|
140
143
|
}
|
141
144
|
args.gs = gs(args.g)
|