AIMindLink commited on
Commit
6c36cb1
Β·
verified Β·
1 Parent(s): 204f80c

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +11 -10
  2. config.py +3 -1
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": "gemma-4-26B-A4B-it-UD-Q6_K_XL.gguf",
350
- "muse": "gemma-4-26B-A4B-it-UD-Q6_K_XL.gguf",
351
- "mind": "gemma-4-26B-A4B-it-UD-Q6_K_XL.gguf"
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
- _N_CTX: int = 49152 # 49152 2048 3072 4096 8192 (12288) 16384 24576 32768 49152
 
 
357
  # ── Context condensatron garden ──────────────────────────────────────────────────
358
- GARDEN_Z_THRESHOLD: int = 12288 # Context length garden["Z"]
359
- GARDEN_C_THRESHOLD: int = 12288 # Context length garden["C"]
360
- GARDEN_F_THRESHOLD: int = 12288 # Context length garden["F"]
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 = 120 # Fetch news every N heartbeats (slash-command)
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
- _N_CTX: int = 32768 # 49152 2048 3072 4096 8192 (12288) 16384 24576 32768 (49152)
 
 
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"]