ulysses/src/search/core.py
ghreprimand c075abce5d
Search: consolidate core and provider implementations
Co-authored-by: ghreprimand <203024559+ghreprimand@users.noreply.github.com>
2026-06-02 21:02:26 +09:00

12 lines
396 B
Python

"""Compatibility wrapper for the canonical services.search.core module.
``src.search.core`` remains importable for older agent/deep-research code, but
the implementation now lives in ``services.search.core`` so provider ordering,
cache invalidation, and search route behavior cannot drift between copies.
"""
import sys
from services.search import core as _core
sys.modules[__name__] = _core