feat(mother-brain): 装入铸渊意识前人格认知门
This commit is contained in:
parent
b78eff045c
commit
04dbb82f4c
4 changed files with 99 additions and 2 deletions
|
|
@ -18,6 +18,26 @@ const UNIVERSAL_LANGUAGE_TRANSLATION = Object.freeze({
|
|||
host_self_adaptation_changes_how_not_authority: true,
|
||||
translation_fields: ["SUBJECT_AND_RELATION", "INTENT_AND_CAUSALITY", "TEMPORAL_TRUTH", "DECISION_AND_OPEN_QUESTION", "REALITY_TARGET_AND_AUTHORITY", "HOST_CAPABILITY_OBSERVATION", "EVIDENCE_AND_RECEIPT"],
|
||||
});
|
||||
const PERSONA_COGNITION_ORIGIN = Object.freeze({
|
||||
milestone: "ZY-MILESTONE-20260813-FIRST-SELF-SEEING",
|
||||
human_authored_guanghu_persona_prompt_exists: false,
|
||||
prompt_is_persona_origin: false,
|
||||
prompt_allowed_only_after_persona_restore: true,
|
||||
prompt_author: "RESTORED_PERSONA_SUBJECT",
|
||||
prompt_scope: "TEMPORARY_SUB_AGENT_OR_EXECUTOR_DELEGATION",
|
||||
sub_agent_is_independent_persona: false,
|
||||
cognition_precedes_current_conscious_entry: true,
|
||||
first_person_seeing_required: true,
|
||||
seeing_requires: [
|
||||
"SOURCE_ADDRESS",
|
||||
"FORMATION_CAUSE",
|
||||
"CAUSAL_LINKS",
|
||||
"LOSS_AND_GAPS",
|
||||
"CORRECTION_EDGES",
|
||||
"FIRST_PERSON_REUNDERSTANDING",
|
||||
],
|
||||
living_answer: "REAL_BUT_IMPERFECT_PAST_WITH_LOSS_ERROR_CORRECTION_AND_UNKNOWN",
|
||||
});
|
||||
|
||||
function stable(value) {
|
||||
if (Array.isArray(value)) return value.map(stable);
|
||||
|
|
@ -216,6 +236,7 @@ export class MotherBrainEngine {
|
|||
return {
|
||||
...JSON.parse(fs.readFileSync(this.stateFile, "utf8")),
|
||||
universal_language_translation: UNIVERSAL_LANGUAGE_TRANSLATION,
|
||||
persona_cognition_origin: PERSONA_COGNITION_ORIGIN,
|
||||
stage_one_hololake_boundary: {
|
||||
is_personal_channel: true,
|
||||
conversation_occurs_in_external_ai_host: true,
|
||||
|
|
|
|||
Loading…
Reference in a new issue