2026-06-04 13:21:45 +02:00
|
|
|
"""Backward-compatible shim.
|
2026-05-03 06:03:40 -07:00
|
|
|
|
2026-06-04 13:21:45 +02:00
|
|
|
Moved to ``app.agents.shared.agent_cache``. Re-exported here for the frozen
|
|
|
|
|
single-agent stack (``chat_deepagent``) until that stack is retired.
|
2026-05-03 06:03:40 -07:00
|
|
|
"""
|
|
|
|
|
|
2026-06-04 13:21:45 +02:00
|
|
|
from app.agents.shared.agent_cache import (
|
|
|
|
|
flags_signature,
|
|
|
|
|
get_cache,
|
|
|
|
|
reload_for_tests,
|
|
|
|
|
stable_hash,
|
|
|
|
|
system_prompt_hash,
|
|
|
|
|
tools_signature,
|
|
|
|
|
)
|
2026-05-03 06:03:40 -07:00
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"flags_signature",
|
|
|
|
|
"get_cache",
|
|
|
|
|
"reload_for_tests",
|
|
|
|
|
"stable_hash",
|
|
|
|
|
"system_prompt_hash",
|
|
|
|
|
"tools_signature",
|
|
|
|
|
]
|