()
| 92 | const MAX_BATCH_CACHE = 50 |
| 93 | |
| 94 | function evictStaleCache() { |
| 95 | const now = Date.now() |
| 96 | for (const [key, entry] of batchContentCache) { |
| 97 | if (entry.expires < now) batchContentCache.delete(key) |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | // ── Core: List Files in HF Repo ────────────────────────────────────── |
| 102 |