Ship growth intelligence and demo polish
CI / verify (push) Successful in 3m51s

This commit is contained in:
2026-08-13 04:44:14 -07:00
parent a6167629cc
commit 1318c0b841
14 changed files with 112 additions and 35 deletions
+2 -4
View File
@@ -153,10 +153,8 @@ export class PrimeOpenAIChatProvider {
});
if (!response.ok) {
const body = await response.text().catch(() => '');
throw new Error(
`Piggy inference ${response.status}: ${body.slice(0, 500) || response.statusText}`,
);
await response.body?.cancel().catch(() => {});
throw new Error(`Piggy inference request failed with status ${response.status}.`);
}
if (!response.body) throw new Error('Piggy inference returned no response stream.');