chore: update startup scripts and .env.example for LLM profile feature

This commit is contained in:
2026-06-16 17:03:25 +08:00
parent 719c3b4ca4
commit d68399d39b
3 changed files with 39 additions and 6 deletions

View File

@@ -56,7 +56,17 @@ if errorlevel 1 (
)
:: ----------------------------------------------------------------
:: 4. Seed demo data if no runs exist yet
:: 4. Ensure configs/ directory exists for LLM profile storage
:: ----------------------------------------------------------------
if not exist "configs" (
mkdir configs
echo [OK] Created configs/ directory for LLM profile storage.
) else (
echo [OK] configs/ directory ready.
)
:: ----------------------------------------------------------------
:: 5. Seed demo data if no runs exist yet
:: ----------------------------------------------------------------
if not exist "outputs\kba-knowledge-base-offline-baseline" (
echo [INFO] No run data found. Generating demo data...
@@ -71,7 +81,7 @@ if not exist "outputs\kba-knowledge-base-offline-baseline" (
)
:: ----------------------------------------------------------------
:: 5. Pick an available port
:: 6. Pick an available port
:: ----------------------------------------------------------------
set PORT=8800
netstat -ano 2>nul | findstr ":8800" | findstr "LISTENING" >nul 2>&1