Skip to content

Commit 319a385

Browse files
Jonathan Harrisonclaude
andcommitted
chore: refresh codette_web.bat banner to v2.3
Bump version label v2.1 -> v2.3, note the new 10-adapter roster, Full Adapter Synthesis, and Signal 7 in the startup banner/header, and clarify the Python-discovery comment (packages live in the main site-packages, so PYTHONNOUSERSITE=1 is safe). Cosmetic only — launch behavior unchanged. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 82c9f83 commit 319a385

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

scripts/codette_web.bat

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
@echo off
22
setlocal
3-
REM Codette v2.1 RC+xi Web UI
3+
REM Codette v2.3 RC+xi Web UI
44
REM Opens browser to http://localhost:7860
55
REM
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
612
REM RC+xi FRAMEWORK (v2.1 — May 2026):
713
REM Recursive Convergence + Epistemic Tension
814
REM Every inference turn emits a full ReasoningTrace with 12 event types:
@@ -47,7 +53,7 @@ REM
4753

4854
echo.
4955
echo ============================================================
50-
echo Codette v2.1 RC+xi -- Structurally Complete
56+
echo Codette v2.3 RC+xi -- Structurally Complete
5157
echo ============================================================
5258
echo.
5359
echo All 12 trace event types wired and tested.
@@ -61,7 +67,8 @@ echo Quantum, Consciousness, Multi-Perspective, Systems, Constraint_Trac
6167
echo * GPU acceleration enabled (35 layers on CUDA)
6268
echo * 7-layer consciousness stack (forge_with_debate)
6369
echo * 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)
6572
echo * LivingMemoryKernelV2 + UnifiedMemory (SQLite+FTS5)
6673
echo * DriftDetector -- GET /api/drift
6774
echo.
@@ -75,7 +82,9 @@ for %%I in ("%SCRIPT_DIR%..") do set "PROJECT_ROOT=%%~fI"
7582
set "PYTHON_CMD="
7683
if exist "%PROJECT_ROOT%\.venv\Scripts\python.exe" set "PYTHON_CMD=%PROJECT_ROOT%\.venv\Scripts\python.exe"
7784
if 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.)
7988
if not defined PYTHON_CMD if exist "%LocalAppData%\Programs\Python\Python314\python.exe" set "PYTHON_CMD=%LocalAppData%\Programs\Python\Python314\python.exe"
8089
if not defined PYTHON_CMD if exist "%LocalAppData%\Programs\Python\Python312\python.exe" set "PYTHON_CMD=%LocalAppData%\Programs\Python\Python312\python.exe"
8190
if not defined PYTHON_CMD set "PYTHON_CMD=python"

0 commit comments

Comments
 (0)