2026-06-04 12:28:20 +02:00
|
|
|
"""Backward-compatible shim.
|
2026-04-23 15:02:58 +05:30
|
|
|
|
2026-06-04 12:28:20 +02:00
|
|
|
The filesystem mode contracts moved to :mod:`app.agents.shared.filesystem_selection`
|
|
|
|
|
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-23 15:02:58 +05:30
|
|
|
|
2026-06-04 12:28:20 +02:00
|
|
|
from __future__ import annotations
|
2026-04-23 15:02:58 +05:30
|
|
|
|
2026-06-04 12:28:20 +02:00
|
|
|
from app.agents.shared.filesystem_selection import (
|
|
|
|
|
ClientPlatform,
|
|
|
|
|
FilesystemMode,
|
|
|
|
|
FilesystemSelection,
|
|
|
|
|
LocalFilesystemMount,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"ClientPlatform",
|
|
|
|
|
"FilesystemMode",
|
|
|
|
|
"FilesystemSelection",
|
|
|
|
|
"LocalFilesystemMount",
|
|
|
|
|
]
|