Files
OpenHands/openhands/runtime/plugins/__init__.py
2024-08-21 00:09:48 +08:00

22 lines
521 B
Python

# Requirements
from openhands.runtime.plugins.agent_skills import (
AgentSkillsPlugin,
AgentSkillsRequirement,
)
from openhands.runtime.plugins.jupyter import JupyterPlugin, JupyterRequirement
from openhands.runtime.plugins.requirement import Plugin, PluginRequirement
__all__ = [
'Plugin',
'PluginRequirement',
'AgentSkillsRequirement',
'AgentSkillsPlugin',
'JupyterRequirement',
'JupyterPlugin',
]
ALL_PLUGINS = {
'jupyter': JupyterPlugin,
'agent_skills': AgentSkillsPlugin,
}