gracefully handle SSE parse errors and suppress raw parser code (#367)

Closes #187
Closes #358

---------

Co-authored-by: Thibault Sottiaux <tibo@openai.com>
This commit is contained in:
Suyash-K
2025-04-19 19:54:29 +05:30
committed by GitHub
parent f3cab736b4
commit b37b257e63

View File

@@ -791,6 +791,41 @@ export class AgentLoop {
this.onLoading(false);
return;
}
// Suppress internal stack on JSON parse failures
if (err instanceof SyntaxError) {
this.onItem({
id: `error-${Date.now()}`,
type: "message",
role: "system",
content: [
{
type: "input_text",
text: "⚠️ Failed to parse streaming response (invalid JSON). Please `/clear` to reset.",
},
],
});
this.onLoading(false);
return;
}
// Handle OpenAI API quota errors
if (
err instanceof Error &&
(err as { code?: string }).code === "insufficient_quota"
) {
this.onItem({
id: `error-${Date.now()}`,
type: "message",
role: "system",
content: [
{
type: "input_text",
text: "⚠️ Insufficient quota. Please check your billing details and retry.",
},
],
});
this.onLoading(false);
return;
}
throw err;
} finally {
this.currentStream = null;