@sidurijs/core 1.0.1 → 1.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/dist/adversarial.test.js +27 -19
- package/dist/chat-contract.d.ts +9 -0
- package/dist/cognition-planner.d.ts +2 -2
- package/dist/context-retriever.d.ts +4 -4
- package/dist/context-retriever.js +22 -25
- package/dist/conversational-teach.test.js +21 -21
- package/dist/evidence.d.ts +3 -3
- package/dist/gating.d.ts +2 -2
- package/dist/gating.js +1 -1
- package/dist/index.d.ts +9 -27
- package/dist/index.js +0 -1
- package/dist/intent-classifier.d.ts +1 -1
- package/dist/intent-classifier.js +4 -4
- package/dist/intent-classifier.test.js +1 -1
- package/dist/interaction-settler.d.ts +4 -12
- package/dist/interaction-settler.js +14 -18
- package/dist/perception-cycle.test.js +18 -34
- package/dist/perception-pipeline.d.ts +3 -4
- package/dist/perception-pipeline.js +12 -13
- package/dist/prompt-compiler.d.ts +1 -1
- package/dist/prompt-compiler.js +11 -11
- package/dist/prompt-compiler.test.js +5 -5
- package/dist/proposals.d.ts +1 -2
- package/dist/response-envelope.d.ts +3 -3
- package/dist/response-envelope.js +4 -4
- package/dist/schema-validator.test.js +3 -3
- package/dist/siduri-db.d.ts +3 -1
- package/dist/siduri-db.js +0 -31
- package/dist/teaching.d.ts +3 -3
- package/dist/teaching.js +1 -1
- package/package.json +1 -1
- package/dist/memory-settler.d.ts +0 -5
- package/dist/memory-settler.js +0 -21
package/dist/teaching.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { RequestContext,
|
|
1
|
+
import { RequestContext, ClaimProposal, BehaviorProposal } from './index';
|
|
2
2
|
export interface ExtractedTeaching {
|
|
3
|
-
claims:
|
|
3
|
+
claims: ClaimProposal[];
|
|
4
4
|
behaviorProposals: BehaviorProposal[];
|
|
5
5
|
}
|
|
6
6
|
/**
|
|
7
7
|
* Deterministic teaching extraction placeholder.
|
|
8
8
|
*
|
|
9
|
-
* In Siduri-X, conversational
|
|
9
|
+
* In Siduri-X, conversational claim and behavioral proposals are generated
|
|
10
10
|
* directly by the Brain LLM via structured cognitive planning (e.g. `submitResponsePlan`).
|
|
11
11
|
* Deterministic regex matching has been removed in favor of pure LLM comprehension,
|
|
12
12
|
* as all candidates are quarantined in 'pending' status until explicitly approved by the user.
|
package/dist/teaching.js
CHANGED
|
@@ -4,7 +4,7 @@ exports.extractDeterministicTeaching = extractDeterministicTeaching;
|
|
|
4
4
|
/**
|
|
5
5
|
* Deterministic teaching extraction placeholder.
|
|
6
6
|
*
|
|
7
|
-
* In Siduri-X, conversational
|
|
7
|
+
* In Siduri-X, conversational claim and behavioral proposals are generated
|
|
8
8
|
* directly by the Brain LLM via structured cognitive planning (e.g. `submitResponsePlan`).
|
|
9
9
|
* Deterministic regex matching has been removed in favor of pure LLM comprehension,
|
|
10
10
|
* as all candidates are quarantined in 'pending' status until explicitly approved by the user.
|
package/package.json
CHANGED
package/dist/memory-settler.d.ts
DELETED
package/dist/memory-settler.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
/**
|
|
18
|
-
* @deprecated RFC VX-26-13: Deconstructing Memory into Sovereign Primitives.
|
|
19
|
-
* Use `@sidurijs/core/interaction-settler` instead.
|
|
20
|
-
*/
|
|
21
|
-
__exportStar(require("./interaction-settler"), exports);
|