mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-04-05 11:24:03 +00:00
36 lines
885 B
JavaScript
36 lines
885 B
JavaScript
import { TransformStream, CountQueuingStrategy } from "node:stream/web";
|
|
import { transform } from "./api/index.js";
|
|
|
|
const parse = (opts) => {
|
|
const api = transform(opts);
|
|
let controller;
|
|
const enqueue = (record) => {
|
|
controller.enqueue(record);
|
|
};
|
|
const terminate = () => {
|
|
controller.terminate();
|
|
};
|
|
return new TransformStream(
|
|
{
|
|
start(ctr) {
|
|
controller = ctr;
|
|
},
|
|
transform(chunk) {
|
|
const error = api.parse(chunk, false, enqueue, terminate);
|
|
if (error) {
|
|
controller.error(error);
|
|
}
|
|
},
|
|
flush() {
|
|
const error = api.parse(undefined, true, enqueue, terminate);
|
|
if (error) {
|
|
controller.error(error);
|
|
}
|
|
},
|
|
},
|
|
new CountQueuingStrategy({ highWaterMark: 1024 }),
|
|
new CountQueuingStrategy({ highWaterMark: 1024 }),
|
|
);
|
|
};
|
|
|
|
export { parse };
|