Ody / src /search /cache.py
ANJD's picture
Upload 387 files
4ac029f verified
Raw
History Blame Contribute Delete
339 Bytes
"""Compatibility wrapper for the canonical services.search.cache module.
``src.search.cache`` stays importable for older agent/deep-research code, but the
implementation now lives in ``services.search.cache`` so the two cannot drift.
"""
import sys
from services.search import cache as _cache
sys.modules[__name__] = _cache