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

21 lines
626 B
Python
Raw Normal View History

"""Backward-compatible shim.
The agent context schema moved to :mod:`app.agents.shared.context` 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 remaining
importers (the not-yet-retired single-agent stack and the ``new_chat`` package
__init__) working during the migration and will be removed with them.
2025-12-19 20:40:10 +02:00
"""
from __future__ import annotations
from app.agents.shared.context import (
FileOperationContractState,
SurfSenseContextSchema,
)
2025-12-19 20:40:10 +02:00
__all__ = [
"FileOperationContractState",
"SurfSenseContextSchema",
]