Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import Lru from 'lru';
const HOUR_IN_MS = 3600000;
const stateCache = new Lru( {
max: 500,
maxAge: HOUR_IN_MS,
} );
export default stateCache;