Skip to content

Commit 78ef9ac

Browse files
committed
Use polyfill when TextDecoderStream isn't available
1 parent a956644 commit 78ef9ac

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

integration/bun/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default async function main() {
88
const model = "meta/llama-2-70b-chat";
99
const options = {
1010
input: {
11-
prompt: "Write a poem about steam buns",
11+
prompt: "Write a haiku about steam buns",
1212
},
1313
};
1414
const output = [];

lib/stream.js

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ const ApiError = require("./error");
44
const {
55
EventSourceParserStream,
66
} = require("../vendor/eventsource-parser/stream");
7+
const { TextDecoderStream } =
8+
typeof global.TextDecoderStream === "undefined"
9+
? require("../vendor/streams-text-encoding/text-decoder-stream")
10+
: global;
711

812
/**
913
* A server-sent event.

0 commit comments

Comments
 (0)