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 CHANGED
@@ -69,6 +69,6 @@
69
69
  "sort-json": "^2.0.0",
70
70
  "uuid": "^8.3.2"
71
71
  },
72
- "version": "9.1.1-beta.21",
72
+ "version": "9.1.1-beta.23",
73
73
  "license": "UNLICENSED"
74
74
  }
@@ -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)