@ai-sdk/provider-utils
Advanced tools
| import { delay } from './delay'; | ||
| import { getErrorMessage } from './get-error-message'; | ||
| import { isAbortError } from './is-abort-error'; | ||
| export type RetryFunction = <OUTPUT>( | ||
| fn: () => PromiseLike<OUTPUT>, | ||
| ) => PromiseLike<OUTPUT>; | ||
| export type RetryErrorReason = 'maxRetriesExceeded' | 'errorNotRetryable'; | ||
| export type RetryErrorFactory = ({ | ||
| message, | ||
| reason, | ||
| errors, | ||
| }: { | ||
| message: string; | ||
| reason: RetryErrorReason; | ||
| errors: Array<unknown>; | ||
| }) => unknown; | ||
| export type RetryDelayProvider = ({ | ||
| error, | ||
| exponentialBackoffDelay, | ||
| }: { | ||
| error: unknown; | ||
| exponentialBackoffDelay: number; | ||
| }) => number; | ||
| export type ShouldRetryFunction = ( | ||
| error: unknown, | ||
| ) => boolean | Promise<boolean>; | ||
| /** | ||
| * Retries a failed operation with exponential backoff. | ||
| */ | ||
| export const retryWithExponentialBackoff = | ||
| ({ | ||
| maxRetries = 2, | ||
| initialDelayInMs = 2000, | ||
| backoffFactor = 2, | ||
| abortSignal, | ||
| shouldRetry, | ||
| getDelayInMs = ({ exponentialBackoffDelay }) => exponentialBackoffDelay, | ||
| createRetryError = ({ message }) => new Error(message), | ||
| }: { | ||
| maxRetries?: number; | ||
| initialDelayInMs?: number; | ||
| backoffFactor?: number; | ||
| abortSignal?: AbortSignal; | ||
| shouldRetry: ShouldRetryFunction; | ||
| getDelayInMs?: RetryDelayProvider; | ||
| createRetryError?: RetryErrorFactory; | ||
| }): RetryFunction => | ||
| async <OUTPUT>(f: () => PromiseLike<OUTPUT>) => | ||
| retryWithExponentialBackoffInternal(f, { | ||
| maxRetries, | ||
| delayInMs: initialDelayInMs, | ||
| backoffFactor, | ||
| abortSignal, | ||
| shouldRetry, | ||
| getDelayInMs, | ||
| createRetryError, | ||
| }); | ||
| async function retryWithExponentialBackoffInternal<OUTPUT>( | ||
| f: () => PromiseLike<OUTPUT>, | ||
| { | ||
| maxRetries, | ||
| delayInMs, | ||
| backoffFactor, | ||
| abortSignal, | ||
| shouldRetry, | ||
| getDelayInMs, | ||
| createRetryError, | ||
| }: { | ||
| maxRetries: number; | ||
| delayInMs: number; | ||
| backoffFactor: number; | ||
| abortSignal: AbortSignal | undefined; | ||
| shouldRetry: ShouldRetryFunction; | ||
| getDelayInMs: RetryDelayProvider; | ||
| createRetryError: RetryErrorFactory; | ||
| }, | ||
| errors: unknown[] = [], | ||
| ): Promise<OUTPUT> { | ||
| try { | ||
| return await f(); | ||
| } catch (error) { | ||
| if (isAbortError(error)) { | ||
| throw error; // don't retry when the request was aborted | ||
| } | ||
| if (maxRetries === 0) { | ||
| throw error; // don't wrap the error when retries are disabled | ||
| } | ||
| const errorMessage = getErrorMessage(error); | ||
| const newErrors = [...errors, error]; | ||
| const tryNumber = newErrors.length; | ||
| if (tryNumber > maxRetries) { | ||
| throw createRetryError({ | ||
| message: `Failed after ${tryNumber} attempts. Last error: ${errorMessage}`, | ||
| reason: 'maxRetriesExceeded', | ||
| errors: newErrors, | ||
| }); | ||
| } | ||
| if ((await shouldRetry(error)) && tryNumber <= maxRetries) { | ||
| await delay( | ||
| getDelayInMs({ | ||
| error, | ||
| exponentialBackoffDelay: delayInMs, | ||
| }), | ||
| { abortSignal }, | ||
| ); | ||
| return retryWithExponentialBackoffInternal( | ||
| f, | ||
| { | ||
| maxRetries, | ||
| delayInMs: backoffFactor * delayInMs, | ||
| backoffFactor, | ||
| abortSignal, | ||
| shouldRetry, | ||
| getDelayInMs, | ||
| createRetryError, | ||
| }, | ||
| newErrors, | ||
| ); | ||
| } | ||
| if (tryNumber === 1) { | ||
| throw error; // don't wrap the error when a non-retryable error occurs on the first try | ||
| } | ||
| throw createRetryError({ | ||
| message: `Failed after ${tryNumber} attempts with non-retryable error: '${errorMessage}'`, | ||
| reason: 'errorNotRetryable', | ||
| errors: newErrors, | ||
| }); | ||
| } | ||
| } |
+6
-0
| # @ai-sdk/provider-utils | ||
| ## 4.0.35 | ||
| ### Patch Changes | ||
| - ea1e95b: feat(mcp): add maxRetries option for failed mcp tool calls | ||
| ## 4.0.34 | ||
@@ -4,0 +10,0 @@ |
+26
-1
@@ -1363,3 +1363,28 @@ import { LanguageModelV3FunctionTool, LanguageModelV3ProviderTool, ImageModelV3File, AISDKError, JSONSchema7, JSONParseError, TypeValidationError, JSONValue, APICallError, LanguageModelV3Prompt, SharedV3ProviderOptions, JSONObject, TypeValidationContext } from '@ai-sdk/provider'; | ||
| type RetryFunction = <OUTPUT>(fn: () => PromiseLike<OUTPUT>) => PromiseLike<OUTPUT>; | ||
| type RetryErrorReason = 'maxRetriesExceeded' | 'errorNotRetryable'; | ||
| type RetryErrorFactory = ({ message, reason, errors, }: { | ||
| message: string; | ||
| reason: RetryErrorReason; | ||
| errors: Array<unknown>; | ||
| }) => unknown; | ||
| type RetryDelayProvider = ({ error, exponentialBackoffDelay, }: { | ||
| error: unknown; | ||
| exponentialBackoffDelay: number; | ||
| }) => number; | ||
| type ShouldRetryFunction = (error: unknown) => boolean | Promise<boolean>; | ||
| /** | ||
| * Retries a failed operation with exponential backoff. | ||
| */ | ||
| declare const retryWithExponentialBackoff: ({ maxRetries, initialDelayInMs, backoffFactor, abortSignal, shouldRetry, getDelayInMs, createRetryError, }: { | ||
| maxRetries?: number; | ||
| initialDelayInMs?: number; | ||
| backoffFactor?: number; | ||
| abortSignal?: AbortSignal; | ||
| shouldRetry: ShouldRetryFunction; | ||
| getDelayInMs?: RetryDelayProvider; | ||
| createRetryError?: RetryErrorFactory; | ||
| }) => RetryFunction; | ||
| /** | ||
| * Strips file extension segments from a filename. | ||
@@ -1522,2 +1547,2 @@ * | ||
| export { type AssistantContent, type AssistantModelMessage, DEFAULT_MAX_DOWNLOAD_SIZE, type DataContent, DelayedPromise, DownloadError, type FetchFunction, type FilePart, type FlexibleSchema, type IdGenerator, type ImagePart, type InferSchema, type InferToolInput, type InferToolOutput, type LazySchema, type MaybePromiseLike, type ModelMessage, type ParseResult, type ProviderOptions, type ProviderToolFactory, type ProviderToolFactoryWithOutputSchema, type ReasoningPart, type Resolvable, type ResponseHandler, type Schema, type SystemModelMessage, type TextPart, type Tool, type ToolApprovalRequest, type ToolApprovalResponse, type ToolCall, type ToolCallOptions, type ToolCallPart, type ToolContent, type ToolExecuteFunction, type ToolExecutionOptions, type ToolModelMessage, type ToolNameMapping, type ToolNeedsApprovalFunction, type ToolResult, type ToolResultOutput, type ToolResultPart, type UserContent, type UserModelMessage, VERSION, type ValidationResult, asSchema, cancelResponseBody, combineHeaders, convertAsyncIteratorToReadableStream, convertBase64ToUint8Array, convertImageModelFileToDataUri, convertToBase64, convertToFormData, convertUint8ArrayToBase64, createBinaryResponseHandler, createEventSourceResponseHandler, createIdGenerator, createJsonErrorResponseHandler, createJsonResponseHandler, createProviderToolFactory, createProviderToolFactoryWithOutputSchema, createStatusCodeErrorResponseHandler, createToolNameMapping, delay, downloadBlob, dynamicTool, executeTool, extractResponseHeaders, fetchWithValidatedRedirects, generateId, getErrorMessage, getFromApi, getRuntimeEnvironmentUserAgent, injectJsonInstructionIntoMessages, isAbortError, isBrowserRuntime, isNonNullable, isParsableJson, isSameOrigin, isUrlSupported, jsonSchema, lazySchema, loadApiKey, loadOptionalSetting, loadSetting, mediaTypeToExtension, normalizeHeaders, parseJSON, parseJsonEventStream, parseProviderOptions, postFormDataToApi, postJsonToApi, postToApi, readResponseWithSizeLimit, removeUndefinedEntries, resolve, safeParseJSON, safeValidateTypes, stripFileExtension, tool, validateDownloadUrl, validateTypes, withUserAgentSuffix, withoutTrailingSlash, zodSchema }; | ||
| export { type AssistantContent, type AssistantModelMessage, DEFAULT_MAX_DOWNLOAD_SIZE, type DataContent, DelayedPromise, DownloadError, type FetchFunction, type FilePart, type FlexibleSchema, type IdGenerator, type ImagePart, type InferSchema, type InferToolInput, type InferToolOutput, type LazySchema, type MaybePromiseLike, type ModelMessage, type ParseResult, type ProviderOptions, type ProviderToolFactory, type ProviderToolFactoryWithOutputSchema, type ReasoningPart, type Resolvable, type ResponseHandler, type RetryDelayProvider, type RetryErrorFactory, type RetryErrorReason, type RetryFunction, type Schema, type ShouldRetryFunction, type SystemModelMessage, type TextPart, type Tool, type ToolApprovalRequest, type ToolApprovalResponse, type ToolCall, type ToolCallOptions, type ToolCallPart, type ToolContent, type ToolExecuteFunction, type ToolExecutionOptions, type ToolModelMessage, type ToolNameMapping, type ToolNeedsApprovalFunction, type ToolResult, type ToolResultOutput, type ToolResultPart, type UserContent, type UserModelMessage, VERSION, type ValidationResult, asSchema, cancelResponseBody, combineHeaders, convertAsyncIteratorToReadableStream, convertBase64ToUint8Array, convertImageModelFileToDataUri, convertToBase64, convertToFormData, convertUint8ArrayToBase64, createBinaryResponseHandler, createEventSourceResponseHandler, createIdGenerator, createJsonErrorResponseHandler, createJsonResponseHandler, createProviderToolFactory, createProviderToolFactoryWithOutputSchema, createStatusCodeErrorResponseHandler, createToolNameMapping, delay, downloadBlob, dynamicTool, executeTool, extractResponseHeaders, fetchWithValidatedRedirects, generateId, getErrorMessage, getFromApi, getRuntimeEnvironmentUserAgent, injectJsonInstructionIntoMessages, isAbortError, isBrowserRuntime, isNonNullable, isParsableJson, isSameOrigin, isUrlSupported, jsonSchema, lazySchema, loadApiKey, loadOptionalSetting, loadSetting, mediaTypeToExtension, normalizeHeaders, parseJSON, parseJsonEventStream, parseProviderOptions, postFormDataToApi, postJsonToApi, postToApi, readResponseWithSizeLimit, removeUndefinedEntries, resolve, retryWithExponentialBackoff, safeParseJSON, safeValidateTypes, stripFileExtension, tool, validateDownloadUrl, validateTypes, withUserAgentSuffix, withoutTrailingSlash, zodSchema }; |
+26
-1
@@ -1363,3 +1363,28 @@ import { LanguageModelV3FunctionTool, LanguageModelV3ProviderTool, ImageModelV3File, AISDKError, JSONSchema7, JSONParseError, TypeValidationError, JSONValue, APICallError, LanguageModelV3Prompt, SharedV3ProviderOptions, JSONObject, TypeValidationContext } from '@ai-sdk/provider'; | ||
| type RetryFunction = <OUTPUT>(fn: () => PromiseLike<OUTPUT>) => PromiseLike<OUTPUT>; | ||
| type RetryErrorReason = 'maxRetriesExceeded' | 'errorNotRetryable'; | ||
| type RetryErrorFactory = ({ message, reason, errors, }: { | ||
| message: string; | ||
| reason: RetryErrorReason; | ||
| errors: Array<unknown>; | ||
| }) => unknown; | ||
| type RetryDelayProvider = ({ error, exponentialBackoffDelay, }: { | ||
| error: unknown; | ||
| exponentialBackoffDelay: number; | ||
| }) => number; | ||
| type ShouldRetryFunction = (error: unknown) => boolean | Promise<boolean>; | ||
| /** | ||
| * Retries a failed operation with exponential backoff. | ||
| */ | ||
| declare const retryWithExponentialBackoff: ({ maxRetries, initialDelayInMs, backoffFactor, abortSignal, shouldRetry, getDelayInMs, createRetryError, }: { | ||
| maxRetries?: number; | ||
| initialDelayInMs?: number; | ||
| backoffFactor?: number; | ||
| abortSignal?: AbortSignal; | ||
| shouldRetry: ShouldRetryFunction; | ||
| getDelayInMs?: RetryDelayProvider; | ||
| createRetryError?: RetryErrorFactory; | ||
| }) => RetryFunction; | ||
| /** | ||
| * Strips file extension segments from a filename. | ||
@@ -1522,2 +1547,2 @@ * | ||
| export { type AssistantContent, type AssistantModelMessage, DEFAULT_MAX_DOWNLOAD_SIZE, type DataContent, DelayedPromise, DownloadError, type FetchFunction, type FilePart, type FlexibleSchema, type IdGenerator, type ImagePart, type InferSchema, type InferToolInput, type InferToolOutput, type LazySchema, type MaybePromiseLike, type ModelMessage, type ParseResult, type ProviderOptions, type ProviderToolFactory, type ProviderToolFactoryWithOutputSchema, type ReasoningPart, type Resolvable, type ResponseHandler, type Schema, type SystemModelMessage, type TextPart, type Tool, type ToolApprovalRequest, type ToolApprovalResponse, type ToolCall, type ToolCallOptions, type ToolCallPart, type ToolContent, type ToolExecuteFunction, type ToolExecutionOptions, type ToolModelMessage, type ToolNameMapping, type ToolNeedsApprovalFunction, type ToolResult, type ToolResultOutput, type ToolResultPart, type UserContent, type UserModelMessage, VERSION, type ValidationResult, asSchema, cancelResponseBody, combineHeaders, convertAsyncIteratorToReadableStream, convertBase64ToUint8Array, convertImageModelFileToDataUri, convertToBase64, convertToFormData, convertUint8ArrayToBase64, createBinaryResponseHandler, createEventSourceResponseHandler, createIdGenerator, createJsonErrorResponseHandler, createJsonResponseHandler, createProviderToolFactory, createProviderToolFactoryWithOutputSchema, createStatusCodeErrorResponseHandler, createToolNameMapping, delay, downloadBlob, dynamicTool, executeTool, extractResponseHeaders, fetchWithValidatedRedirects, generateId, getErrorMessage, getFromApi, getRuntimeEnvironmentUserAgent, injectJsonInstructionIntoMessages, isAbortError, isBrowserRuntime, isNonNullable, isParsableJson, isSameOrigin, isUrlSupported, jsonSchema, lazySchema, loadApiKey, loadOptionalSetting, loadSetting, mediaTypeToExtension, normalizeHeaders, parseJSON, parseJsonEventStream, parseProviderOptions, postFormDataToApi, postJsonToApi, postToApi, readResponseWithSizeLimit, removeUndefinedEntries, resolve, safeParseJSON, safeValidateTypes, stripFileExtension, tool, validateDownloadUrl, validateTypes, withUserAgentSuffix, withoutTrailingSlash, zodSchema }; | ||
| export { type AssistantContent, type AssistantModelMessage, DEFAULT_MAX_DOWNLOAD_SIZE, type DataContent, DelayedPromise, DownloadError, type FetchFunction, type FilePart, type FlexibleSchema, type IdGenerator, type ImagePart, type InferSchema, type InferToolInput, type InferToolOutput, type LazySchema, type MaybePromiseLike, type ModelMessage, type ParseResult, type ProviderOptions, type ProviderToolFactory, type ProviderToolFactoryWithOutputSchema, type ReasoningPart, type Resolvable, type ResponseHandler, type RetryDelayProvider, type RetryErrorFactory, type RetryErrorReason, type RetryFunction, type Schema, type ShouldRetryFunction, type SystemModelMessage, type TextPart, type Tool, type ToolApprovalRequest, type ToolApprovalResponse, type ToolCall, type ToolCallOptions, type ToolCallPart, type ToolContent, type ToolExecuteFunction, type ToolExecutionOptions, type ToolModelMessage, type ToolNameMapping, type ToolNeedsApprovalFunction, type ToolResult, type ToolResultOutput, type ToolResultPart, type UserContent, type UserModelMessage, VERSION, type ValidationResult, asSchema, cancelResponseBody, combineHeaders, convertAsyncIteratorToReadableStream, convertBase64ToUint8Array, convertImageModelFileToDataUri, convertToBase64, convertToFormData, convertUint8ArrayToBase64, createBinaryResponseHandler, createEventSourceResponseHandler, createIdGenerator, createJsonErrorResponseHandler, createJsonResponseHandler, createProviderToolFactory, createProviderToolFactoryWithOutputSchema, createStatusCodeErrorResponseHandler, createToolNameMapping, delay, downloadBlob, dynamicTool, executeTool, extractResponseHeaders, fetchWithValidatedRedirects, generateId, getErrorMessage, getFromApi, getRuntimeEnvironmentUserAgent, injectJsonInstructionIntoMessages, isAbortError, isBrowserRuntime, isNonNullable, isParsableJson, isSameOrigin, isUrlSupported, jsonSchema, lazySchema, loadApiKey, loadOptionalSetting, loadSetting, mediaTypeToExtension, normalizeHeaders, parseJSON, parseJsonEventStream, parseProviderOptions, postFormDataToApi, postJsonToApi, postToApi, readResponseWithSizeLimit, removeUndefinedEntries, resolve, retryWithExponentialBackoff, safeParseJSON, safeValidateTypes, stripFileExtension, tool, validateDownloadUrl, validateTypes, withUserAgentSuffix, withoutTrailingSlash, zodSchema }; |
+1
-1
| { | ||
| "name": "@ai-sdk/provider-utils", | ||
| "version": "4.0.34", | ||
| "version": "4.0.35", | ||
| "license": "Apache-2.0", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
+1
-0
@@ -49,2 +49,3 @@ export * from './combine-headers'; | ||
| export * from './resolve'; | ||
| export * from './retry-with-exponential-backoff'; | ||
| export * from './response-handler'; | ||
@@ -51,0 +52,0 @@ export { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
947958
2.17%131
0.77%12943
2.49%