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.js CHANGED
@@ -3370,9 +3370,7 @@ async function parseComplexResponse({
3370
3370
  }
3371
3371
  prefixMap.text.toolInvocations.push(value);
3372
3372
  if (onToolCall) {
3373
- console.log("onToolCall", value);
3374
3373
  const result = await onToolCall({ toolCall: value });
3375
- console.log("onToolCall result", result);
3376
3374
  if (result != null) {
3377
3375
  prefixMap.text.toolInvocations[prefixMap.text.toolInvocations.length - 1] = { ...value, result };
3378
3376
  }