aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/file_workspace/__init__.py
blob: a0e06e38f4d84a63cbfbe8383c1c7d28d32d9635 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import enum
from pathlib import Path
from typing import Optional

from .base import FileWorkspace


class FileWorkspaceBackendName(str, enum.Enum):
    LOCAL = "local"
    GCS = "gcs"
    S3 = "s3"


def get_workspace(
    backend: FileWorkspaceBackendName, *, id: str = "", root_path: Optional[Path] = None
) -> FileWorkspace:
    assert bool(root_path) != bool(id), "Specify root_path or id to get workspace"
    if root_path is None:
        root_path = Path(f"/workspaces/{id}")

    match backend:
        case FileWorkspaceBackendName.LOCAL:
            from .local import FileWorkspaceConfiguration, LocalFileWorkspace

            config = FileWorkspaceConfiguration.from_env()
            config.root = root_path
            return LocalFileWorkspace(config)
        case FileWorkspaceBackendName.S3:
            from .s3 import S3FileWorkspace, S3FileWorkspaceConfiguration

            config = S3FileWorkspaceConfiguration.from_env()
            config.root = root_path
            return S3FileWorkspace(config)
        case FileWorkspaceBackendName.GCS:
            from .gcs import GCSFileWorkspace, GCSFileWorkspaceConfiguration

            config = GCSFileWorkspaceConfiguration.from_env()
            config.root = root_path
            return GCSFileWorkspace(config)


__all__ = [
    "FileWorkspace",
    "FileWorkspaceBackendName",
    "get_workspace",
]