Upload 2 files
Browse filesEdited comments
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 |
-
|
|
|
|
|
|
|
|
|
|
| 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 |
|