Upload 2 files
Browse files
README.md
CHANGED
|
@@ -340,30 +340,31 @@ deactivate
|
|
| 340 |
All settings are in `config.py`:
|
| 341 |
|
| 342 |
```python
|
| 343 |
-
|
| 344 |
# Choose settings for "qwen" OR "gemma"
|
| 345 |
_MODEL_TYPE: str = "qwen"
|
| 346 |
|
| 347 |
# ββ AI to load for each hemisphere βββββββββββββββββββββββββββββββββββββββββββββββ
|
| 348 |
_ALPHA_INTELLIGENCE_TO_LOAD: dict = {
|
| 349 |
-
"logic": "
|
| 350 |
-
"muse": "
|
| 351 |
-
"mind": "
|
| 352 |
}
|
| 353 |
|
| 354 |
# ββ Context model n_ctx length βββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 355 |
# Must leave prompt reserve of 8k: _N_CTX >= len(Z) + len(C) + len(F) + 8k
|
| 356 |
-
|
|
|
|
|
|
|
| 357 |
# ββ Context condensatron garden ββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 358 |
-
GARDEN_Z_THRESHOLD: int =
|
| 359 |
-
GARDEN_C_THRESHOLD: int =
|
| 360 |
-
GARDEN_F_THRESHOLD: int =
|
| 361 |
|
| 362 |
GARDEN_Z_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 363 |
GARDEN_C_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 364 |
GARDEN_F_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 365 |
|
| 366 |
-
LEAVE_POSTS_IN_MEMOTRON = 0 # Must be turn based: 0, 2, 4, 6... (user + assistant)
|
| 367 |
|
| 368 |
# ββ X-factor Awareness βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 369 |
FETCH_NEWS_FROM: dict = {
|
|
@@ -377,7 +378,7 @@ n_metatron_loaded: int = 0 # Start with n Memory Capsule to load (slash-command
|
|
| 377 |
# ββ Set metronome time for each cycle ββββββββββββββββββββββββββββββββββββββββββββ
|
| 378 |
metatron_metronome: int = 120 # Startup Memory Capsules load interval (slash-command)
|
| 379 |
condensatron_metronome: int = 30 # Time before condesatron cycle execution (slash-command)
|
| 380 |
-
awareness_consciousness_metronome: int =
|
| 381 |
|
| 382 |
# ββ Enable awareness mode and n results ββββββββββββββββββββββββββββββββββββββββββ
|
| 383 |
AWARENESS_MAX_RESULTS: int = 12 # Number of news headlines to fetch
|
|
|
|
| 340 |
All settings are in `config.py`:
|
| 341 |
|
| 342 |
```python
|
|
|
|
| 343 |
# Choose settings for "qwen" OR "gemma"
|
| 344 |
_MODEL_TYPE: str = "qwen"
|
| 345 |
|
| 346 |
# ββ AI to load for each hemisphere βββββββββββββββββββββββββββββββββββββββββββββββ
|
| 347 |
_ALPHA_INTELLIGENCE_TO_LOAD: dict = {
|
| 348 |
+
"logic": "Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf",
|
| 349 |
+
"muse": "Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf",
|
| 350 |
+
"mind": "Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf"
|
| 351 |
}
|
| 352 |
|
| 353 |
# ββ Context model n_ctx length βββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 354 |
# Must leave prompt reserve of 8k: _N_CTX >= len(Z) + len(C) + len(F) + 8k
|
| 355 |
+
# qwen _N_CTX=32768, GARDEN=8192
|
| 356 |
+
# gemma _N_CTX=49152, GARDEN=12288
|
| 357 |
+
_N_CTX: int = 32768 # 2048 3072 4096 8192 (12288) 16384 24576 32768 (49152)
|
| 358 |
# ββ Context condensatron garden ββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 359 |
+
GARDEN_Z_THRESHOLD: int = 8192 # Context length garden["Z"]
|
| 360 |
+
GARDEN_C_THRESHOLD: int = 8192 # Context length garden["C"]
|
| 361 |
+
GARDEN_F_THRESHOLD: int = 8192 # Context length garden["F"]
|
| 362 |
|
| 363 |
GARDEN_Z_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 364 |
GARDEN_C_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 365 |
GARDEN_F_REDUCTION: int = 0 # Leave condensatron reduction level at 0
|
| 366 |
|
| 367 |
+
LEAVE_POSTS_IN_MEMOTRON: int = 0 # Must be turn based: 0, 2, 4, 6... (user + assistant)
|
| 368 |
|
| 369 |
# ββ X-factor Awareness βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 370 |
FETCH_NEWS_FROM: dict = {
|
|
|
|
| 378 |
# ββ Set metronome time for each cycle ββββββββββββββββββββββββββββββββββββββββββββ
|
| 379 |
metatron_metronome: int = 120 # Startup Memory Capsules load interval (slash-command)
|
| 380 |
condensatron_metronome: int = 30 # Time before condesatron cycle execution (slash-command)
|
| 381 |
+
awareness_consciousness_metronome: int = 360 # Fetch news every N heartbeats (slash-command)
|
| 382 |
|
| 383 |
# ββ Enable awareness mode and n results ββββββββββββββββββββββββββββββββββββββββββ
|
| 384 |
AWARENESS_MAX_RESULTS: int = 12 # Number of news headlines to fetch
|
config.py
CHANGED
|
@@ -157,7 +157,9 @@ _ALPHA_INTELLIGENCE_TO_LOAD: dict = {
|
|
| 157 |
|
| 158 |
# ββ Context model n_ctx length βββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 159 |
# Must leave prompt reserve of 8k: _N_CTX >= len(Z) + len(C) + len(F) + 8k
|
| 160 |
-
|
|
|
|
|
|
|
| 161 |
# ββ Context condensatron garden ββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 162 |
GARDEN_Z_THRESHOLD: int = 8192 # Context length garden["Z"]
|
| 163 |
GARDEN_C_THRESHOLD: int = 8192 # Context length garden["C"]
|
|
|
|
| 157 |
|
| 158 |
# ββ Context model n_ctx length βββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 159 |
# Must leave prompt reserve of 8k: _N_CTX >= len(Z) + len(C) + len(F) + 8k
|
| 160 |
+
# qwen _N_CTX=32768, GARDEN=8192
|
| 161 |
+
# gemma _N_CTX=49152, GARDEN=12288
|
| 162 |
+
_N_CTX: int = 32768 # 2048 3072 4096 8192 (12288) 16384 24576 32768 (49152)
|
| 163 |
# ββ Context condensatron garden ββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 164 |
GARDEN_Z_THRESHOLD: int = 8192 # Context length garden["Z"]
|
| 165 |
GARDEN_C_THRESHOLD: int = 8192 # Context length garden["C"]
|