Skip to content

Commit 7b3f41f

Browse files
committed
🥅 Allow SafetyErrors to directly throw when streaming
1 parent 3096aa0 commit 7b3f41f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

‎src/utils.ts

+11-2
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,22 @@ export const getFileType = async (buffer: Uint8Array | ArrayBuffer) => {
3636

3737
if (format === undefined || !validMediaFormats.includes(format))
3838
throw new Error(
39-
"Please provide a valid file format that is accepted by Gemini. Learn more about valid formats here: https://ai.google.dev/gemini-api/docs/prompting_with_media?lang=node#supported_file_formats"
39+
"Please provide a valid file format that is accepted by Gemini. Learn more about valid formats here: https://ai.google.dev/gemini-api/docs/prompting_with_media?lang=node#supported_file_formats",
4040
);
4141

4242
return format;
4343
};
4444

45+
export class SafetyError extends Error {
46+
constructor(message: string) {
47+
super(message);
48+
this.name = "SafetyError";
49+
}
50+
}
51+
4552
export const handleReader = async (
4653
response: Response,
47-
cb: (response: GeminiResponse) => void
54+
cb: (response: GeminiResponse) => void,
4855
) => {
4956
if (!response.body) throw new Error(await response.text());
5057

@@ -62,6 +69,7 @@ export const handleReader = async (
6269
return reader.read().then(processText);
6370
});
6471
} catch (e) {
72+
if (e instanceof SafetyError) throw e;
6573
// This solution breaks on Safari or any fetch polyfill without AsyncIterators, but it works for node-fetch.
6674
try {
6775
// response.body has an asyncIterator in modern most browsers
@@ -70,6 +78,7 @@ export const handleReader = async (
7078
cb(JSON.parse(decoder.decode(chunk).replace(/^data: /, "")));
7179
}
7280
} catch (err) {
81+
if (err instanceof SafetyError) throw err;
7382
throw new Error(err.stack);
7483
}
7584
}

0 commit comments

Comments
 (0)