AIMindLink commited on
Commit
93b08da
Β·
verified Β·
1 Parent(s): 52b0f0f

Upload 2 files

Browse files

Ediited readme and config comments

Files changed (2) hide show
  1. README.md +8 -4
  2. config.py +2 -2
README.md CHANGED
@@ -254,15 +254,19 @@ deactivate
254
  All settings are in `config.py`:
255
 
256
  ```python
257
- _N_CTX = 24576 # context window per hemisphere
 
258
 
259
- GARDEN_F_THRESHOLD: int = 32768 # Optimize for RAM and GRAM
260
- GARDEN_C_THRESHOLD: int = 32768 # Optimize for RAM and GRAM
261
- GARDEN_Z_THRESHOLD: int = 32768 # Optimize for RAM and GRAM
 
262
 
263
  GARDEN_F_REDUCTION: int = 0
264
  GARDEN_C_REDUCTION: int = 0
265
  GARDEN_Z_REDUCTION: int = 0
 
 
266
  ```
267
 
268
  To swap models, update the `"path"` entries in `HEMISPHERES` and the stop/think tokens at the top of `config.py`.
 
254
  All settings are in `config.py`:
255
 
256
  ```python
257
+ # ── Context length handling ──────────────────────────────────────────────────────
258
+ _N_CTX: int = 49152 # context window per hemisphere
259
 
260
+ # ── condensatron modes length ────────────────────────────────────────────────────
261
+ GARDEN_F_THRESHOLD: int = 12288 # Must leave prompt reserve: (_N_CTX >= (len(F) + len(C) + len(Z) + 8k))
262
+ GARDEN_C_THRESHOLD: int = 12288 # Must leave prompt reserve: (_N_CTX >= (len(F) + len(C) + len(Z) + 8k))
263
+ GARDEN_Z_THRESHOLD: int = 12288 # Must leave prompt reserve: (_N_CTX >= (len(F) + len(C) + len(Z) + 8k))
264
 
265
  GARDEN_F_REDUCTION: int = 0
266
  GARDEN_C_REDUCTION: int = 0
267
  GARDEN_Z_REDUCTION: int = 0
268
+
269
+ LEAVE_POSTS_IN_MEMOTRON = 0 # Warning: Must be even (0, 2, 4, 6, 8...)
270
  ```
271
 
272
  To swap models, update the `"path"` entries in `HEMISPHERES` and the stop/think tokens at the top of `config.py`.
config.py CHANGED
@@ -63,9 +63,9 @@ MEMORY_CAPSULES_TO_LOAD: list = [
63
  "/file prompt/46_Apprentice-ThePerfectSoldierTestbed.md",
64
  "/file prompt/47_ValkaAI_UnaAI-TheIronContractsAndTheSiliconClektal.md"
65
  ]
66
-
67
  # ── Context length handling ──────────────────────────────────────────────────────
68
- _N_CTX: int = 49152 # 49152 2048 3072 4096 8192 16384 24576 32768 49152
69
 
70
  # ── condensatron modes length ────────────────────────────────────────────────────
71
  GARDEN_F_THRESHOLD: int = 4096 # Must leave prompt reserve: (_N_CTX >= (len(F) + len(C) + len(Z) + 8k))
 
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
 
70
  # ── condensatron modes length ────────────────────────────────────────────────────
71
  GARDEN_F_THRESHOLD: int = 4096 # Must leave prompt reserve: (_N_CTX >= (len(F) + len(C) + len(Z) + 8k))