ai 3.1.18 → 3.1.19

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/dist/index.mjs CHANGED
@@ -3295,9 +3295,7 @@ async function parseComplexResponse({
3295
3295
  }
3296
3296
  prefixMap.text.toolInvocations.push(value);
3297
3297
  if (onToolCall) {
3298
- console.log("onToolCall", value);
3299
3298
  const result = await onToolCall({ toolCall: value });
3300
- console.log("onToolCall result", result);
3301
3299
  if (result != null) {
3302
3300
  prefixMap.text.toolInvocations[prefixMap.text.toolInvocations.length - 1] = { ...value, result };
3303
3301
  }