2026-06-04 12:19:22 +02:00
|
|
|
"""Backward-compatible shim.
|
2026-05-03 06:03:40 -07:00
|
|
|
|
2026-06-04 12:19:22 +02:00
|
|
|
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
|
|
|
"""
|
|
|
|
|
|
2026-05-03 06:03:40 -07:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2026-06-04 12:19:22 +02:00
|
|
|
from app.agents.shared.context import (
|
|
|
|
|
FileOperationContractState,
|
|
|
|
|
SurfSenseContextSchema,
|
|
|
|
|
)
|
2025-12-19 20:40:10 +02:00
|
|
|
|
2026-06-04 12:19:22 +02:00
|
|
|
__all__ = [
|
|
|
|
|
"FileOperationContractState",
|
|
|
|
|
"SurfSenseContextSchema",
|
|
|
|
|
]
|