arch: audit model receipt donor and preserve stage boundary
This commit is contained in:
parent
dc14d2a9aa
commit
632e6b9864
15 changed files with 104 additions and 15 deletions
|
|
@ -10,7 +10,7 @@ const architecture = readJson("routing/hololake-current-architecture.json");
|
|||
const paradigm = readJson("routing/hololake-paradigm-ai-language-persona-os.json");
|
||||
|
||||
test("current architecture begins with the paradigm OS contract", () => {
|
||||
assert.equal(architecture.version, "2026-08-30.1");
|
||||
assert.equal(architecture.version, "2026-08-30.2");
|
||||
assert.equal(architecture.paradigm_ai_language_persona_os.record_id, "HLP-PARADIGM-AI-LANGUAGE-PERSONA-OS-001");
|
||||
const stageOneIndex = architecture.read_order.indexOf(
|
||||
architecture.first_public_product_stage.architecture_page,
|
||||
|
|
@ -41,6 +41,15 @@ test("GH-AIOS general AI operating platform is the first public product stage",
|
|||
assert.equal(architecture.first_public_product_stage.vendor_adapter_matrix_required, false);
|
||||
assert.equal(architecture.first_public_product_stage.stage_one_internal_ai_chat, false);
|
||||
assert.equal(architecture.first_public_product_stage.stage_one_model_api_configuration, false);
|
||||
assert.equal(
|
||||
architecture.first_public_product_stage.model_api_receipt_component,
|
||||
"DONOR_AUDITED_DEFERRED_FROM_STAGE1",
|
||||
);
|
||||
const donor = architecture.first_public_product_stage.model_api_receipt_donor_audit;
|
||||
assert.equal(donor.self_contained_runtime, false);
|
||||
assert.equal(donor.whole_product_merge_allowed, false);
|
||||
assert.equal(donor.real_provider_acceptance, "NOT_COMPLETE_KEYCHAIN_INTERACTION_STOPPED_BEFORE_REPLY");
|
||||
assert.ok(donor.required_before_later_integration.includes("REPLACE_LANGUAGE_MARKER_ROUTING_WITH_TCS_SEMANTIC_EVENTS"));
|
||||
});
|
||||
|
||||
test("model, external agents and AGE mirrors do not replace the persona", () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue