veryfront 0.1.605 → 0.1.606
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.
package/esm/deno.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anthropic-stream.d.ts","sourceRoot":"","sources":["../../../../src/extensions/ext-llm-anthropic/src/anthropic-stream.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B,CAAC;AAaF,wBAAgB,8BAA8B,CAC5C,GAAG,EAAE,OAAO,GACX,MAAM,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAgBlD;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,YAAY,GAAG,SAAS,CAsBhF;AAED,wBAAuB,8BAA8B,CACnD,MAAM,EAAE,cAAc,CAAC,UAAU,CAAC,GACjC,aAAa,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"anthropic-stream.d.ts","sourceRoot":"","sources":["../../../../src/extensions/ext-llm-anthropic/src/anthropic-stream.ts"],"names":[],"mappings":"AAOA,KAAK,YAAY,GAAG;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC/B,CAAC;AAaF,wBAAgB,8BAA8B,CAC5C,GAAG,EAAE,OAAO,GACX,MAAM,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,GAAG,EAAE,MAAM,CAAA;CAAE,GAAG,IAAI,CAgBlD;AAED,wBAAgB,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,YAAY,GAAG,SAAS,CAsBhF;AAED,wBAAuB,8BAA8B,CACnD,MAAM,EAAE,cAAc,CAAC,UAAU,CAAC,GACjC,aAAa,CAAC,OAAO,CAAC,CA0PxB"}
|
|
@@ -43,6 +43,7 @@ export async function* streamAnthropicCompatibleParts(stream) {
|
|
|
43
43
|
const reasoningBlocks = new Map();
|
|
44
44
|
let finishReason = null;
|
|
45
45
|
let usage;
|
|
46
|
+
let completedClientToolUseStep = false;
|
|
46
47
|
for await (const chunk of stream) {
|
|
47
48
|
buffer += decoder.decode(chunk, { stream: true });
|
|
48
49
|
const parsed = parseSseChunk(buffer);
|
|
@@ -206,6 +207,9 @@ export async function* streamAnthropicCompatibleParts(stream) {
|
|
|
206
207
|
input: current.input.length > 0 ? current.input : "{}",
|
|
207
208
|
...(current.providerExecuted ? { providerExecuted: true } : {}),
|
|
208
209
|
};
|
|
210
|
+
if (!current.providerExecuted) {
|
|
211
|
+
completedClientToolUseStep = true;
|
|
212
|
+
}
|
|
209
213
|
toolCalls.delete(index);
|
|
210
214
|
continue;
|
|
211
215
|
}
|
|
@@ -217,6 +221,14 @@ export async function* streamAnthropicCompatibleParts(stream) {
|
|
|
217
221
|
}
|
|
218
222
|
}
|
|
219
223
|
}
|
|
224
|
+
if (completedClientToolUseStep && toolCalls.size === 0) {
|
|
225
|
+
yield {
|
|
226
|
+
type: "finish",
|
|
227
|
+
finishReason: { unified: "tool-calls", raw: "tool_use" },
|
|
228
|
+
...(usage ? { usage } : {}),
|
|
229
|
+
};
|
|
230
|
+
return;
|
|
231
|
+
}
|
|
220
232
|
}
|
|
221
233
|
if (buffer.trim().length > 0) {
|
|
222
234
|
const parsed = parseSseChunk(`${buffer}\n\n`);
|