@tangleai/pipeline 0.20.0 → 0.21.1
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 +40 -0
- package/package.json +7 -7
- package/src/run.d.ts +2 -2
- package/src/run.js +1 -1
- package/src/standins.d.ts +2 -2
- package/src/standins.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @tangleai/pipeline
|
|
2
2
|
|
|
3
|
+
## 0.21.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Update the exact Jaren foundation dependencies and source pin to the published
|
|
8
|
+
0.84.3 release after verifying its AI-free archives against source-built bytes.
|
|
9
|
+
Retain Tangle's model, context and agent ownership and align the development
|
|
10
|
+
Node pin with 24.20.0. Tangle publication remains a manual author action.
|
|
11
|
+
Allow release preparation after an already committed local release while
|
|
12
|
+
preserving its record and rejecting unprepared version edits.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @tangleai/models@0.21.1
|
|
15
|
+
- @tangleai/core@0.21.1
|
|
16
|
+
- @tangleai/memory@0.21.1
|
|
17
|
+
|
|
18
|
+
## 0.21.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- Use the models, context and agents owners of the inherited AI mechanisms. MAS
|
|
23
|
+
executable identity version 3 names all executed mechanism versions; an old
|
|
24
|
+
executable checkpoint is refused intact through the existing mismatch path.
|
|
25
|
+
Memory and ledger records retain their schemas and projection contracts.
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @tangleai/core@0.21.0
|
|
32
|
+
- @tangleai/memory@0.21.0
|
|
33
|
+
- @tangleai/models@0.21.0
|
|
34
|
+
|
|
35
|
+
## 0.20.1
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @tangleai/core@0.20.1
|
|
41
|
+
- @tangleai/memory@0.20.1
|
|
42
|
+
|
|
3
43
|
## 0.20.0
|
|
4
44
|
|
|
5
45
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangleai/pipeline",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"description": "Tangle AI pipeline — the memory loop as a jaren-dag document, executed by @jarenjs/flow, projected to mermaid for display",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"sideEffects": false,
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@tangleai/core": "^0.
|
|
42
|
-
"@tangleai/memory": "^0.
|
|
43
|
-
"@jarenjs/
|
|
44
|
-
"@jarenjs/
|
|
45
|
-
"@jarenjs/
|
|
46
|
-
"@
|
|
41
|
+
"@tangleai/core": "^0.21.1",
|
|
42
|
+
"@tangleai/memory": "^0.21.1",
|
|
43
|
+
"@jarenjs/flow": "0.84.3",
|
|
44
|
+
"@jarenjs/json": "0.84.3",
|
|
45
|
+
"@jarenjs/mermaid": "0.84.3",
|
|
46
|
+
"@tangleai/models": "^0.21.1"
|
|
47
47
|
},
|
|
48
48
|
"private": false,
|
|
49
49
|
"types": "./src/index.d.ts",
|
package/src/run.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* `createPipeline` binds the DAG's named task handlers to injected
|
|
5
5
|
* seams — the store (any MemoryStore: in-memory for tests and the pages
|
|
6
|
-
* demo, SQLite in the desktop app), an embedder (the @
|
|
6
|
+
* demo, SQLite in the desktop app), an embedder (the @tangleai/models seam:
|
|
7
7
|
* `{ embed, model, dims }` — `createEmbeddingClient` for a wire,
|
|
8
8
|
* `createHashEmbedder` as the offline default), a contradiction judge,
|
|
9
9
|
* a clock, and the tuned thresholds (salvaged memflow defaults). The
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* store, not in the return value. Per-node timing/status records stream
|
|
18
18
|
* through `onNode` exactly as @jarenjs/flow emits them.
|
|
19
19
|
*/
|
|
20
|
-
import type { Embedder } from '@
|
|
20
|
+
import type { Embedder } from '@tangleai/models/embed';
|
|
21
21
|
import { type MemoryStore, type MemoryUnitInput } from '@tangleai/memory';
|
|
22
22
|
import { type Judge } from './standins.ts';
|
|
23
23
|
export interface PipelineThresholds {
|
package/src/run.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* `createPipeline` binds the DAG's named task handlers to injected
|
|
5
5
|
* seams — the store (any MemoryStore: in-memory for tests and the pages
|
|
6
|
-
* demo, SQLite in the desktop app), an embedder (the @
|
|
6
|
+
* demo, SQLite in the desktop app), an embedder (the @tangleai/models seam:
|
|
7
7
|
* `{ embed, model, dims }` — `createEmbeddingClient` for a wire,
|
|
8
8
|
* `createHashEmbedder` as the offline default), a contradiction judge,
|
|
9
9
|
* a clock, and the tuned thresholds (salvaged memflow defaults). The
|
package/src/standins.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* `examples/skeleton.ts` because the desktop app and the pages demo
|
|
5
5
|
* need them as real seams.
|
|
6
6
|
*
|
|
7
|
-
* `createOfflineEmbedder` is @
|
|
7
|
+
* `createOfflineEmbedder` is @tangleai/models's `createHashEmbedder` — the
|
|
8
8
|
* suite's own deterministic hashed-trigram reference, behind the same
|
|
9
9
|
* `{ embed, model, dims }` seam a wire client fills — at the width the
|
|
10
10
|
* pipeline's thresholds were measured against. Measured over the
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
* disagree in figures — the rule stand-in for an LLM contradiction
|
|
28
28
|
* judge (`createStructuredOutput` over `contradictionMessages`).
|
|
29
29
|
*/
|
|
30
|
-
import { type Embedder } from '@
|
|
30
|
+
import { type Embedder } from '@tangleai/models/embed';
|
|
31
31
|
import type { MemoryUnit } from '@tangleai/core/schemas/memory';
|
|
32
32
|
import type { ContradictionVerdict } from '@tangleai/memory';
|
|
33
33
|
/** The measured width (see the header). */
|
package/src/standins.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* `examples/skeleton.ts` because the desktop app and the pages demo
|
|
5
5
|
* need them as real seams.
|
|
6
6
|
*
|
|
7
|
-
* `createOfflineEmbedder` is @
|
|
7
|
+
* `createOfflineEmbedder` is @tangleai/models's `createHashEmbedder` — the
|
|
8
8
|
* suite's own deterministic hashed-trigram reference, behind the same
|
|
9
9
|
* `{ embed, model, dims }` seam a wire client fills — at the width the
|
|
10
10
|
* pipeline's thresholds were measured against. Measured over the
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
* disagree in figures — the rule stand-in for an LLM contradiction
|
|
28
28
|
* judge (`createStructuredOutput` over `contradictionMessages`).
|
|
29
29
|
*/
|
|
30
|
-
import { createHashEmbedder } from '@
|
|
30
|
+
import { createHashEmbedder } from '@tangleai/models/embed';
|
|
31
31
|
/** The measured width (see the header). */
|
|
32
32
|
export const OFFLINE_EMBEDDER_DIMS = 64;
|
|
33
33
|
/** The offline embedder: the suite's hash reference at the measured width. */
|