umar-sharif821's picture
feat: reproducible eval + shared policy module; fix smart_agent wasted-capacity bug
ddf831c
raw
history blame contribute delete
196 Bytes
"""Reusable cache-eviction policies for the CDN Cache Optimizer."""
from .policies import lru_baseline, random_baseline, smart_agent
__all__ = ["lru_baseline", "random_baseline", "smart_agent"]