Upload 2 files
Browse filesEdiited readme and config comments
README.md
CHANGED
|
@@ -254,15 +254,19 @@ deactivate
|
|
| 254 |
All settings are in `config.py`:
|
| 255 |
|
| 256 |
```python
|
| 257 |
-
|
|
|
|
| 258 |
|
| 259 |
-
|
| 260 |
-
|
| 261 |
-
|
|
|
|
| 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))
|