mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-20 03:35:35 -04:00
c075abce5d
Co-authored-by: ghreprimand <203024559+ghreprimand@users.noreply.github.com>
13 lines
396 B
Python
13 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
|