@exellix/graph-engine 7.0.0 → 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.
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ A minimal, focused SDK for executing graphs in the exellix ecosystem.
|
|
|
33
33
|
| Layer 01 / 08 graph entry & response contracts | [`.docs/graph-io-visibility.md`](.docs/graph-io-visibility.md) |
|
|
34
34
|
| Graph entry `dataFilters` v1 / public evaluator | [`.docs/data-filters-evaluation.md`](.docs/data-filters-evaluation.md) |
|
|
35
35
|
| Task-node `conditions` + conditional `modelConfig.cases` (runx) | [`.docs/task-node-conditions-evaluation.md`](.docs/task-node-conditions-evaluation.md) |
|
|
36
|
-
| **Model profile aliases** (7.x: graph = profile names, runtime = concrete models) | [`BREAKING-CHANGES.md`](BREAKING-CHANGES.md) §7.0.0, [`.docs/fr-model-alias-descriptors.md`](.docs/fr-model-alias-descriptors.md) |
|
|
36
|
+
| **Model profile aliases** (7.x: graph = profile names, runtime = concrete models) | [`BREAKING-CHANGES.md`](BREAKING-CHANGES.md) §7.0.0, [`.docs/ai-tasks-model-profile-aliases-7x.md`](.docs/ai-tasks-model-profile-aliases-7x.md) (ai-tasks), [`.docs/fr-model-alias-descriptors.md`](.docs/fr-model-alias-descriptors.md) (upstream FRs) |
|
|
37
37
|
| Platform vs implementation (no domain operators in schema) | [`.docs/platform-generic-vs-implementation.md`](.docs/platform-generic-vs-implementation.md) |
|
|
38
38
|
| Bundled graph examples & bundle README | [`graphs/README.md`](graphs/README.md) |
|
|
39
39
|
|
|
@@ -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 (
|
|
298
|
-
webWrites.push({
|
|
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.
|
|
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": "^
|
|
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",
|