We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a956644 commit 78ef9acCopy full SHA for 78ef9ac
integration/bun/index.ts
@@ -8,7 +8,7 @@ export default async function main() {
8
const model = "meta/llama-2-70b-chat";
9
const options = {
10
input: {
11
- prompt: "Write a poem about steam buns",
+ prompt: "Write a haiku about steam buns",
12
},
13
};
14
const output = [];
lib/stream.js
@@ -4,6 +4,10 @@ const ApiError = require("./error");
4
const {
5
EventSourceParserStream,
6
} = require("../vendor/eventsource-parser/stream");
7
+const { TextDecoderStream } =
+ typeof global.TextDecoderStream === "undefined"
+ ? require("../vendor/streams-text-encoding/text-decoder-stream")
+ : global;
/**
* A server-sent event.
0 commit comments