@exellix/graph-engine 7.0.1 → 7.0.2

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.
@@ -293,9 +293,19 @@ function buildOutputContract(node) {
293
293
  const tc = task.taskConfiguration;
294
294
  const webCfg = tc?.aiTaskProfile;
295
295
  const webScoping = webCfg?.webScoping;
296
+ const narrixCfg = tc?.narrix;
296
297
  const webWrites = [];
297
- if (webScoping && webScoping.enabled === true) {
298
- webWrites.push({ path: 'webContext', source: 'taskConfiguration.aiTaskProfile.webScoping → executeNode (runtime-known)' });
298
+ if (narrixCfg?.enableWebScope === true) {
299
+ webWrites.push({
300
+ path: 'webContext',
301
+ source: 'taskConfiguration.narrix.enableWebScope → @exellix/ai-tasks (runtime-known)',
302
+ });
303
+ }
304
+ else if (webScoping && webScoping.enabled === true) {
305
+ webWrites.push({
306
+ path: 'webContext',
307
+ source: 'taskConfiguration.aiTaskProfile.webScoping → executeNode (runtime-known)',
308
+ });
299
309
  }
300
310
  const synthWrites = [];
301
311
  const inputSynth = webCfg?.inputSynthesis;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exellix/graph-engine",
3
- "version": "7.0.1",
3
+ "version": "7.0.2",
4
4
  "type": "module",
5
5
  "description": "Graph executor SDK",
6
6
  "main": "dist/src/index.js",
@@ -49,7 +49,7 @@
49
49
  "access": "public"
50
50
  },
51
51
  "dependencies": {
52
- "@exellix/ai-tasks": "^8.0.0",
52
+ "@exellix/ai-tasks": "^8.0.1",
53
53
  "@x12i/activix": "^7.1.0",
54
54
  "@x12i/catalox": "^5.1.1",
55
55
  "@x12i/env": "^4.0.1",