ai 6.0.141 → 6.0.142

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
@@ -1122,7 +1122,7 @@ import {
1122
1122
  } from "@ai-sdk/provider-utils";
1123
1123
 
1124
1124
  // src/version.ts
1125
- var VERSION = true ? "6.0.141" : "0.0.0-test";
1125
+ var VERSION = true ? "6.0.142" : "0.0.0-test";
1126
1126
 
1127
1127
  // src/util/download/download.ts
1128
1128
  var download = async ({
@@ -3821,6 +3821,9 @@ var DefaultStepResult = class {
3821
3821
  function stepCountIs(stepCount) {
3822
3822
  return ({ steps }) => steps.length === stepCount;
3823
3823
  }
3824
+ function isLoopFinished() {
3825
+ return () => false;
3826
+ }
3824
3827
  function hasToolCall(toolName) {
3825
3828
  return ({ steps }) => {
3826
3829
  var _a21, _b, _c;
@@ -13488,6 +13491,7 @@ export {
13488
13491
  isDataUIPart,
13489
13492
  isDeepEqualData,
13490
13493
  isFileUIPart,
13494
+ isLoopFinished,
13491
13495
  isReasoningUIPart,
13492
13496
  isStaticToolUIPart,
13493
13497
  isTextUIPart,