plugin-sensitive-filter-xr 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sensitiveFilter.d.ts","sourceRoot":"","sources":["../../src/lib/sensitiveFilter.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAa,oBAAoB,EAA8B,MAAM,kBAAkB,CAAA;AAGnG,OAAO,EACL,eAAe,EAGf,uBAAuB,EACvB,wBAAwB,EAEzB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAML,qBAAqB,EAKtB,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"sensitiveFilter.d.ts","sourceRoot":"","sources":["../../src/lib/sensitiveFilter.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAa,oBAAoB,EAA8B,MAAM,kBAAkB,CAAA;AAGnG,OAAO,EACL,eAAe,EAGf,uBAAuB,EACvB,wBAAwB,EAEzB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAML,qBAAqB,EAKtB,MAAM,YAAY,CAAA;AAoxBnB,qBAEa,yBAA0B,YAAW,wBAAwB,CAAC,qBAAqB,CAAC;IAE/F,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAY;IAEvC,QAAQ,CAAC,IAAI,EAAE,oBAAoB,CA6NlC;IAEK,gBAAgB,CACpB,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,uBAAuB,GAC/B,OAAO,CAAC,eAAe,CAAC;IAa3B,OAAO,CAAC,wBAAwB;IAgThC,OAAO,CAAC,uBAAuB;CA2fhC;AAED,YAAY,EAAE,qBAAqB,EAAE,CAAA"}
|
|
@@ -234,16 +234,19 @@ class BufferedOutputProxyChatModel extends BaseChatModel {
|
|
|
234
234
|
const internalOptions = buildInternalSourceOptions(options);
|
|
235
235
|
const streamFn = this.innerModel?.stream;
|
|
236
236
|
if (typeof streamFn === 'function') {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
237
|
+
const stream = await streamFn.call(this.innerModel, messages, internalOptions);
|
|
238
|
+
if (stream && typeof stream[Symbol.asyncIterator] === 'function') {
|
|
239
|
+
let mergedChunk = null;
|
|
240
|
+
for await (const rawChunk of stream) {
|
|
241
|
+
const chunk = toAiMessageChunk(rawChunk);
|
|
242
|
+
if (!chunk) {
|
|
243
|
+
continue;
|
|
244
|
+
}
|
|
245
|
+
mergedChunk = mergedChunk ? mergedChunk.concat(chunk) : chunk;
|
|
246
|
+
}
|
|
247
|
+
if (mergedChunk) {
|
|
248
|
+
return toAiMessage(mergedChunk);
|
|
242
249
|
}
|
|
243
|
-
mergedChunk = mergedChunk ? mergedChunk.concat(chunk) : chunk;
|
|
244
|
-
}
|
|
245
|
-
if (mergedChunk) {
|
|
246
|
-
return toAiMessage(mergedChunk);
|
|
247
250
|
}
|
|
248
251
|
}
|
|
249
252
|
return toAiMessage(await this.innerModel.invoke(messages, internalOptions));
|