Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export const exponentialBackoff = ( { delay = 1000, maxAttempts = 3 } = {} ) => ( {
name: 'EXPONENTIAL_BACKOFF',
delay: Math.max( 500, delay ),
maxAttempts: Math.min( 5, maxAttempts ),
} );
export const noRetry = () => ( {
name: 'NO_RETRY',
} );
export default exponentialBackoff();