AIMindLink commited on
Commit
89cd7af
Β·
verified Β·
1 Parent(s): 3c80a37

Upload 2 files

Browse files

Edited comments

Files changed (2) hide show
  1. README.md +3 -0
  2. config.py +4 -4
README.md CHANGED
@@ -247,6 +247,9 @@ deactivate
247
  All settings are in `config.py`:
248
 
249
  ```python
 
 
 
250
  # ── Context length handling ──────────────────────────────────────────────────────
251
  _N_CTX: int = 49152 # context window per hemisphere
252
 
 
247
  All settings are in `config.py`:
248
 
249
  ```python
250
+ # Startup Memory restore for vector synthesis
251
+ N_MEMORY_CAPSULES_TO_LOAD: int = 1
252
+
253
  # ── Context length handling ──────────────────────────────────────────────────────
254
  _N_CTX: int = 49152 # context window per hemisphere
255
 
config.py CHANGED
@@ -48,9 +48,6 @@ _THINK_END_TOKENS: list = ["<channel|>"]
48
 
49
  ENABLE_THINKING: bool = True # global fallback (not used directly β€” see per-hemi flag)
50
 
51
- # Startup Memory for vector synthesis
52
- N_MEMORY_CAPSULES_TO_LOAD: int = 1
53
-
54
  MEMORY_CAPSULES_TO_LOAD: list = [
55
  "/file prompt/lambda-mindlink.md",
56
  "/file prompt/1999.md",
@@ -63,7 +60,10 @@ MEMORY_CAPSULES_TO_LOAD: list = [
63
  "/file prompt/46_Apprentice-ThePerfectSoldierTestbed.md",
64
  "/file prompt/47_ValkaAI_UnaAI-TheIronContractsAndTheSiliconClektal.md"
65
  ]
66
- 13653
 
 
 
67
  # ── Context length handling ──────────────────────────────────────────────────────
68
  _N_CTX: int = 49152 # 49152 2048 3072 4096 8192 (12288) 16384 24576 32768 49152
69
 
 
48
 
49
  ENABLE_THINKING: bool = True # global fallback (not used directly β€” see per-hemi flag)
50
 
 
 
 
51
  MEMORY_CAPSULES_TO_LOAD: list = [
52
  "/file prompt/lambda-mindlink.md",
53
  "/file prompt/1999.md",
 
60
  "/file prompt/46_Apprentice-ThePerfectSoldierTestbed.md",
61
  "/file prompt/47_ValkaAI_UnaAI-TheIronContractsAndTheSiliconClektal.md"
62
  ]
63
+
64
+ # Startup Memory restore for vector synthesis
65
+ N_MEMORY_CAPSULES_TO_LOAD: int = 1
66
+
67
  # ── Context length handling ──────────────────────────────────────────────────────
68
  _N_CTX: int = 49152 # 49152 2048 3072 4096 8192 (12288) 16384 24576 32768 49152
69