11@ echo off
22setlocal
3- REM Codette v2.1 RC+xi Web UI
3+ REM Codette v2.3 RC+xi Web UI
44REM Opens browser to http://localhost:7860
55REM
6+ REM v2.3 additions (May 22 2026): full 10-adapter roster (orchestrator +
7+ REM constraint_tracker now load), Full Adapter Synthesis (SYNTHESIZE ALL),
8+ REM self-overclaiming hallucination signal (Signal 7), voice-reinforced
9+ REM behavioral retrain of all 8 perspectives, clean-query routing fix.
10+ REM See docs/CHANGELOG_2026-05-22.md
11+ REM
612REM RC+xi FRAMEWORK (v2.1 — May 2026):
713REM Recursive Convergence + Epistemic Tension
814REM Every inference turn emits a full ReasoningTrace with 12 event types:
4753
4854echo .
4955echo ============================================================
50- echo Codette v2.1 RC+xi -- Structurally Complete
56+ echo Codette v2.3 RC+xi -- Structurally Complete
5157echo ============================================================
5258echo .
5359echo All 12 trace event types wired and tested.
@@ -61,7 +67,8 @@ echo Quantum, Consciousness, Multi-Perspective, Systems, Constraint_Trac
6167echo * GPU acceleration enabled (35 layers on CUDA)
6268echo * 7-layer consciousness stack (forge_with_debate)
6369echo * QuantumSpiderweb + ResonantContinuityEngine
64- echo * HallucinationGuard + SycophancyGuard + AEGIS
70+ echo * HallucinationGuard (Signal 7: self-overclaiming) + SycophancyGuard + AEGIS
71+ echo * Full Adapter Synthesis -- SYNTHESIZE ALL (all 8 perspectives)
6572echo * LivingMemoryKernelV2 + UnifiedMemory (SQLite+FTS5)
6673echo * DriftDetector -- GET /api/drift
6774echo .
@@ -75,7 +82,9 @@ for %%I in ("%SCRIPT_DIR%..") do set "PROJECT_ROOT=%%~fI"
7582set " PYTHON_CMD = "
7683if exist " %PROJECT_ROOT% \.venv\Scripts\python.exe" set " PYTHON_CMD = %PROJECT_ROOT% \.venv\Scripts\python.exe"
7784if not defined PYTHON_CMD if exist " %PROJECT_ROOT% \.venv\bin\python" set " PYTHON_CMD = %PROJECT_ROOT% \.venv\bin\python"
78- REM Prefer the Python 3.14 user install where llama_cpp/numpy are correctly built
85+ REM Prefer the standalone Python 3.14 install (in %LocalAppData%) — its main
86+ REM site-packages has the correctly-built llama_cpp/numpy. (PYTHONNOUSERSITE=1
87+ REM below is safe: these live in the main site-packages, not the per-user one.)
7988if not defined PYTHON_CMD if exist " %LocalAppData% \Programs\Python\Python314\python.exe" set " PYTHON_CMD = %LocalAppData% \Programs\Python\Python314\python.exe"
8089if not defined PYTHON_CMD if exist " %LocalAppData% \Programs\Python\Python312\python.exe" set " PYTHON_CMD = %LocalAppData% \Programs\Python\Python312\python.exe"
8190if not defined PYTHON_CMD set " PYTHON_CMD = python"
0 commit comments