SurfSense/surfsense_backend/app/agents/new_chat/feature_flags.py

23 lines
581 B
Python
Raw Normal View History

"""Backward-compatible shim.
2026-04-28 09:22:19 -07:00
The agent feature-flag resolver moved to :mod:`app.agents.shared.feature_flags`
as part of promoting the shared agent toolkit out of ``new_chat`` into the
cross-agent kernel. Import from there directly; this re-export keeps the
not-yet-retired single-agent stack working during the migration and will be
removed with it.
2026-04-28 09:22:19 -07:00
"""
from __future__ import annotations
from app.agents.shared.feature_flags import (
AgentFeatureFlags,
get_flags,
reload_for_tests,
)
2026-04-28 09:22:19 -07:00
__all__ = [
"AgentFeatureFlags",
"get_flags",
"reload_for_tests",
]