aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/core/workspace/__init__.py
blob: ae1877dee0d2061b514ed42139f4bab9ccb4102b (plain)
1
2
3
4
5
6
7
8
9
"""The workspace is the central hub for the Agent's on disk resources."""
from autogpt.core.workspace.base import Workspace
from autogpt.core.workspace.simple import SimpleWorkspace, WorkspaceSettings

__all__ = [
    "SimpleWorkspace",
    "Workspace",
    "WorkspaceSettings",
]