Implemented OCR Functionality

This commit is contained in:
2025-04-13 03:08:07 -06:00
parent 85b8a7d052
commit c741d81a45
120 changed files with 17416 additions and 6 deletions

View File

@ -150,12 +150,15 @@ switch ($choice) {
}
# ---------------------- Server: Launch Flask Server ----------------------
Push-Location $venvFolder
Write-Host "`nLaunching Borealis..." -ForegroundColor Green
Write-Host "===================================================================================="
Write-Host "$($symbols.Running) Python Flask Server Started..."
python "Borealis\server.py"
Pop-Location
Run-Step "Borealis: Launch Flask Server" {
Push-Location $venvFolder
Write-Host "`nLaunching Borealis..." -ForegroundColor Green
Write-Host "===================================================================================="
Write-Host "$($symbols.Running) Python Flask Server Started..."
Write-Host "$($symbols.Running) Preloading OCR Engines... Please be patient..."
python "Borealis\server.py"
Pop-Location
}
}
# ---------------------- Agent Module ----------------------