mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Robert Brennan <accounts@rbren.io>
26 lines
671 B
Python
26 lines
671 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
|
|
from openhands.runtime.plugins.vscode import VSCodePlugin, VSCodeRequirement
|
|
|
|
__all__ = [
|
|
'Plugin',
|
|
'PluginRequirement',
|
|
'AgentSkillsRequirement',
|
|
'AgentSkillsPlugin',
|
|
'JupyterRequirement',
|
|
'JupyterPlugin',
|
|
'VSCodeRequirement',
|
|
'VSCodePlugin',
|
|
]
|
|
|
|
ALL_PLUGINS = {
|
|
'jupyter': JupyterPlugin,
|
|
'agent_skills': AgentSkillsPlugin,
|
|
'vscode': VSCodePlugin,
|
|
}
|