@exellix/graph-engine 7.2.4 → 7.2.7

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/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 7.2.3
3
+ ## 7.2.4
4
+
5
+ ### Added
6
+
7
+ - **MAIN readiness (G1/G4):** `mainReadinessPolicy` (`fail` | `warn` | `off`) on runtime or task configuration blocks MAIN `runTask` when declared graph-entry / synthesis paths are empty; exports `evaluateTaskNodeMainReadiness`, `resolveMainReadinessPolicy`, `buildMainReadinessResolutionRoot`.
8
+ - **Root response after parallel fan-out (G7):** `graph.response` resolves against the full post-run `executionMemory` (including parallel `executionMapping` writes) before `finalOutput` is returned.
9
+ - **Canonical `modelUsed` (G9):** `resolveCanonicalModelUsed` and `buildAiTasksObservabilityRecord` prefer gateway/metadata `modelUsed` over authored `modelConfig`.
10
+ - **`check:no-legacy`:** Fails if `postinstall` patch scripts or `scripts/patch-*.mjs` workarounds reappear.
4
11
 
5
12
  ### Fixed
6
13
 
@@ -9,8 +16,8 @@
9
16
 
10
17
  ### Changed
11
18
 
12
- - **Dependencies:** `@exellix/ai-tasks` ^8.0.9, `@x12i/activix` ^8.0.5, `@x12i/ai-profiles` ^1.2.0.
13
- - **Removed** `postinstall` patch for `@exellix/ai-tasks@8.0.7` `MODEL_CAPABILITIES` re-export (fixed upstream in ≥8.0.9).
19
+ - **Dependencies:** Pinned to current npm latest (e.g. `@exellix/ai-tasks` 8.1.1, `@x12i/activix` 8.0.7, `@x12i/funcx` 4.2.0, `@x12i/catalox` 5.1.1); no `postinstall` patch (upstream `MODEL_CAPABILITIES` export fixed in ai-tasks ≥8.0.9).
20
+ - **Removed** `postinstall` and `scripts/patch-ai-tasks-xynthesis-export.mjs` workaround for `@exellix/ai-tasks@8.0.7`.
14
21
  - **Live script:** `run-pre-synthesis-graph.mjs` no longer requires `runtime.aliasConfig`; PRE summary uses `metadata.synthesisEnabled`.
15
22
 
16
23
  ## 7.1.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exellix/graph-engine",
3
- "version": "7.2.4",
3
+ "version": "7.2.7",
4
4
  "type": "module",
5
5
  "description": "Graph executor SDK",
6
6
  "main": "dist/src/index.js",
@@ -50,25 +50,25 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@exellix/ai-tasks": "^8.1.0",
54
- "@x12i/activix": "^8.0.7",
55
- "@x12i/ai-profiles": "^1.2.3",
56
- "@x12i/catalox": "^5.1.1",
57
- "@x12i/env": "^4.0.1",
58
- "@x12i/funcx": "^4.2.0",
59
- "@x12i/graphenix": "^2.5.0",
60
- "@x12i/graphenix-format": "^2.0.0",
61
- "@x12i/logxer": "^4.3.6",
62
- "@x12i/memorix-descriptors": "^1.6.0",
63
- "@x12i/memorix-retrieval": "^1.10.0",
64
- "@x12i/memorix-writer": "^1.0.0",
65
- "@x12i/optimixer": "^2.0.1",
66
- "@x12i/rendrix": "^4.3.0",
67
- "@x12i/runx": "^1.3.0"
53
+ "@exellix/ai-tasks": "^8.1.7",
54
+ "@x12i/activix": "8.3.0",
55
+ "@x12i/ai-profiles": "1.2.7",
56
+ "@x12i/catalox": "5.1.1",
57
+ "@x12i/env": "4.0.1",
58
+ "@x12i/funcx": "4.2.0",
59
+ "@x12i/graphenix": "2.5.0",
60
+ "@x12i/graphenix-format": "2.0.0",
61
+ "@x12i/logxer": "4.3.6",
62
+ "@x12i/memorix-descriptors": "1.6.0",
63
+ "@x12i/memorix-retrieval": "1.10.0",
64
+ "@x12i/memorix-writer": "1.0.0",
65
+ "@x12i/optimixer": "2.0.1",
66
+ "@x12i/rendrix": "4.3.0",
67
+ "@x12i/runx": "1.3.0"
68
68
  },
69
69
  "devDependencies": {
70
- "@types/node": "^20.0.0",
71
- "tsx": "^4.19.0",
72
- "typescript": "^5.0.0"
70
+ "@types/node": "25.9.1",
71
+ "tsx": "4.22.3",
72
+ "typescript": "6.0.3"
73
73
  }
74
74
  }
@@ -1,10 +0,0 @@
1
- /**
2
- * @deprecated Legacy alias-map exports removed in 7.1. Use {@link graphAiModelConfig.js} and `@x12i/ai-profiles`.
3
- */
4
- export { DEFAULT_GRAPH_AI_MODEL_IDS, DEFAULT_GRAPH_AI_MODEL_PROFILE_CONFIG, looksLikeConcreteModelId, isGraphAiProfileName, assertGraphAiProfileNameString, resolveGraphAiModelConfig, toRunTaskModelConfigForPhase, type RunTaskModelConfigWire, type EngineModelPhase, type GraphAiModelConfigResolveContext, } from './graphAiModelConfig.js';
5
- /** @deprecated Use {@link isGraphAiProfileName}. */
6
- export { isGraphAiProfileName as isModelAliasString } from './graphAiModelConfig.js';
7
- /** @deprecated Use {@link assertGraphAiProfileNameString}. */
8
- export { assertGraphAiProfileNameString as assertGraphModelAliasString } from './graphAiModelConfig.js';
9
- /** @deprecated Use {@link resolveGraphAiModelConfig}. */
10
- export { resolveGraphAiModelConfig as resolveGraphAiModelConfigAliases } from './graphAiModelConfig.js';
@@ -1,10 +0,0 @@
1
- /**
2
- * @deprecated Legacy alias-map exports removed in 7.1. Use {@link graphAiModelConfig.js} and `@x12i/ai-profiles`.
3
- */
4
- export { DEFAULT_GRAPH_AI_MODEL_IDS, DEFAULT_GRAPH_AI_MODEL_PROFILE_CONFIG, looksLikeConcreteModelId, isGraphAiProfileName, assertGraphAiProfileNameString, resolveGraphAiModelConfig, toRunTaskModelConfigForPhase, } from './graphAiModelConfig.js';
5
- /** @deprecated Use {@link isGraphAiProfileName}. */
6
- export { isGraphAiProfileName as isModelAliasString } from './graphAiModelConfig.js';
7
- /** @deprecated Use {@link assertGraphAiProfileNameString}. */
8
- export { assertGraphAiProfileNameString as assertGraphModelAliasString } from './graphAiModelConfig.js';
9
- /** @deprecated Use {@link resolveGraphAiModelConfig}. */
10
- export { resolveGraphAiModelConfig as resolveGraphAiModelConfigAliases } from './graphAiModelConfig.js';
@@ -1,9 +0,0 @@
1
- /**
2
- * Package-level Narrix ingest flag semantics:
3
- * - default enabled
4
- * - DISABLE_NARRIX_INGEST=1 disables
5
- *
6
- * Upstream ai-tasks currently uses USE_NARRIX_INGEST. This helper maps the new
7
- * semantic into the legacy flag before ai-tasks module initialization.
8
- */
9
- export declare function applyNarrixIngestEnvDefault(): void;
@@ -1,18 +0,0 @@
1
- /**
2
- * Package-level Narrix ingest flag semantics:
3
- * - default enabled
4
- * - DISABLE_NARRIX_INGEST=1 disables
5
- *
6
- * Upstream ai-tasks currently uses USE_NARRIX_INGEST. This helper maps the new
7
- * semantic into the legacy flag before ai-tasks module initialization.
8
- */
9
- export function applyNarrixIngestEnvDefault() {
10
- const disabled = process.env.DISABLE_NARRIX_INGEST === '1';
11
- if (disabled) {
12
- process.env.USE_NARRIX_INGEST = '0';
13
- return;
14
- }
15
- if (process.env.USE_NARRIX_INGEST == null) {
16
- process.env.USE_NARRIX_INGEST = '1';
17
- }
18
- }