Skip to content

Commit d550058

Browse files
committed
Update dev startup script messaging and checks
Refined output messages in start-dev.ps1 for clarity and consistency. Updated instructions for missing Ollama installation and clarified local AI model usage, including mention of RAG enhancement.
1 parent 1c3bcb7 commit d550058

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

start-dev.ps1

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Lab68 Dev Platform - Development Startup Script
22
# This script ensures Ollama is available and starts the dev server
33

4-
Write-Host "🚀 Starting Lab68 Dev Platform..." -ForegroundColor Cyan
4+
Write-Host "Starting Lab68 Dev Platform..." -ForegroundColor Cyan
55
Write-Host ""
66

77
# Add Ollama to PATH
@@ -11,17 +11,18 @@ $env:PATH = "C:\Users\$env:USERNAME\AppData\Local\Programs\Ollama;$env:PATH"
1111
Write-Host "Checking Ollama status..." -ForegroundColor Yellow
1212
try {
1313
$ollamaVersion = ollama --version 2>$null
14-
Write-Host "Ollama installed: $ollamaVersion" -ForegroundColor Green
14+
Write-Host "Ollama installed: $ollamaVersion" -ForegroundColor Green
1515

1616
$models = ollama list 2>$null
1717
if ($models -match "deepseek-r1:7b") {
18-
Write-Host "DeepSeek R1 7B model ready" -ForegroundColor Green
19-
Write-Host "🟢 AI will run locally (privacy-first, no API costs)" -ForegroundColor Green
18+
Write-Host "DeepSeek R1 7B model ready" -ForegroundColor Green
19+
Write-Host "AI will run locally with RAG enhancement (privacy-first, no API costs)" -ForegroundColor Green
2020
} else {
2121
Write-Host "⚠ DeepSeek model not found. Run: ollama pull deepseek-r1:7b" -ForegroundColor Yellow
2222
}
2323
} catch {
24-
Write-Host "⚠ Ollama not found. AI will use fallback APIs" -ForegroundColor Yellow
24+
Write-Host "Ollama not found. AI features require Ollama." -ForegroundColor Red
25+
Write-Host "Install from: https://ollama.com" -ForegroundColor Yellow
2526
}
2627

2728
Write-Host ""

0 commit comments

Comments
 (0)