forked from Nutlope/twitterbio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
abstracted streaming logic in helper function
- Loading branch information
Showing
2 changed files
with
76 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import { | ||
createParser, | ||
ParsedEvent, | ||
ReconnectInterval, | ||
} from "eventsource-parser"; | ||
|
||
export interface OpenAIStreamPayload { | ||
model: string; | ||
prompt: string; | ||
temperature: number; | ||
top_p: number; | ||
frequency_penalty: number; | ||
presence_penalty: number; | ||
max_tokens: number; | ||
stream: boolean; | ||
n: number; | ||
} | ||
|
||
export async function OpenAIStream(payload: OpenAIStreamPayload) { | ||
const encoder = new TextEncoder(); | ||
const decoder = new TextDecoder(); | ||
|
||
let counter = 0; | ||
|
||
const res = await fetch("https://api.openai.com/v1/completions", { | ||
headers: { | ||
"Content-Type": "application/json", | ||
Authorization: `Bearer ${process.env.OPENAI_API_KEY ?? ""}`, | ||
}, | ||
method: "POST", | ||
body: JSON.stringify(payload), | ||
}); | ||
|
||
const stream = new ReadableStream({ | ||
async start(controller) { | ||
// callback | ||
function onParse(event: ParsedEvent | ReconnectInterval) { | ||
if (event.type === "event") { | ||
const data = event.data; | ||
// https://beta.openai.com/docs/api-reference/completions/create#completions/create-stream | ||
if (data === "[DONE]") { | ||
controller.close(); | ||
return; | ||
} | ||
try { | ||
const json = JSON.parse(data); | ||
const text = json.choices[0].text; | ||
if (counter < 2 && (text.match(/\n/) || []).length) { | ||
// this is a prefix character (i.e., "\n\n"), do nothing | ||
return; | ||
} | ||
const queue = encoder.encode(text); | ||
controller.enqueue(queue); | ||
counter++; | ||
} catch (e) { | ||
// maybe parse error | ||
controller.error(e); | ||
} | ||
} | ||
} | ||
|
||
// stream response (SSE) from OpenAI may be fragmented into multiple chunks | ||
// this ensures we properly read chunks and invoke an event for each SSE event stream | ||
const parser = createParser(onParse); | ||
// https://web.dev/streams/#asynchronous-iteration | ||
for await (const chunk of res.body as any) { | ||
parser.feed(decoder.decode(chunk)); | ||
} | ||
}, | ||
}); | ||
|
||
return stream; | ||
} |