mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
22 lines
521 B
Python
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,
|
|
}
|