File size: 748 Bytes
8c6097b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All rights reserved.
"""
Workspace management module for the DeepDiver Multi-Agent System.
This module provides local workspace management capabilities that don't require
external dependencies like E2B. Each chat session gets its own isolated workspace
directory for file operations and data persistence.
"""
from .local_workspace_manager import (
LocalWorkspaceManager,
WorkspaceInfo,
WorkspaceStatus,
get_workspace_manager,
initialize_workspace_manager,
shutdown_workspace_manager
)
__all__ = [
'LocalWorkspaceManager',
'WorkspaceInfo',
'WorkspaceStatus',
'get_workspace_manager',
'initialize_workspace_manager',
'shutdown_workspace_manager'
]
|