v3.6.1 — add GPT-5.6 models (sol / terra / luna)

Added the OpenAI GPT-5.6 line to the provider pool: gpt-5.6-sol (frontier/default),
gpt-5.6-terra (balanced), gpt-5.6-luna (fast/affordable). Version 3.6.0 -> 3.6.1.
This commit is contained in:
CyberSecurityUP
2026-07-10 16:27:28 -03:00
parent d414dcb1f1
commit 54bf424c1d
17 changed files with 48 additions and 28 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ function Ok ($m) { Write-Host " + $m" -ForegroundColor Green }
function Warn($m){ Write-Host " ! $m" -ForegroundColor Yellow }
Write-Host ""
Write-Host " NeuroSploit installer (Windows) — v3.6.0" -ForegroundColor Cyan
Write-Host " NeuroSploit installer (Windows) — v3.6.1" -ForegroundColor Cyan
# arch → asset arch (only x64 prebuilt today; arm64 falls back to source)
$rawArch = $env:PROCESSOR_ARCHITECTURE
@@ -29,7 +29,7 @@ $ref = $env:NEUROSPLOIT_REF
if (-not $ref) {
try { $ref = (Invoke-RestMethod "https://api.github.com/repos/$slug/releases/latest").tag_name } catch { }
}
if (-not $ref) { $ref = "v3.6.0" }
if (-not $ref) { $ref = "v3.6.1" }
Say "Release: $ref"
New-Item -ItemType Directory -Force -Path $dir | Out-Null