$ErrorActionPreference = 'Stop' $prompts = Get-Content -LiteralPath 'reports\ggufx_purecode_latest\gguf_evo_eval_prompts.jsonl' | ForEach-Object { $_ | ConvertFrom-Json } $out = @() foreach ($p in $prompts) { $raw = ollama run tinymind-rawzero-fusion $p.prompt $evo = ollama run tinymind-ggufx-purecode $p.prompt $out += [ordered]@{ id=$p.id; prompt=$p.prompt; rawzero=$raw; evo=$evo; checks=$p.checks } } $out | ConvertTo-Json -Depth 8 | Set-Content -Path 'reports\ggufx_purecode_latest\rawzero_vs_evo_outputs.json' -Encoding UTF8