odysseusphone / src /search /cache.py
Earring9405's picture
Upload folder using huggingface_hub (part 2)
ed1e1a8 verified
Raw
History Blame Contribute Delete
328 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