aboutsummaryrefslogtreecommitdiff
path: root/autogpts/autogpt/autogpt/core/plugin/__init__.py
blob: b850114b39c235bc6ed6112fc3b7b7d32a4daab4 (plain)
1
2
3
4
5
6
"""The plugin system allows the Agent to be extended with new functionality."""
from autogpt.core.plugin.base import PluginService

__all__ = [
    "PluginService",
]