chore: update startup scripts and .env.example for LLM profile feature
This commit is contained in:
14
start.bat
14
start.bat
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user