mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* add initial version of swe-agent plugin; * rename swe cursors * split setup script into two and create two requirements * print SWE-agent command documentation * update swe-agent to default to no custom docs * update dockerfile with dependency from swe-agent * make env setup a separate script for .bashrc source * fix swe-tool plugins; add missing _split_string --------- Co-authored-by: Robert Brennan <accounts@rbren.io>
9 lines
291 B
Python
9 lines
291 B
Python
from .mixin import PluginMixin
|
|
from .requirement import PluginRequirement
|
|
|
|
# Requirements
|
|
from .jupyter import JupyterRequirement
|
|
from .swe_agent_commands import SWEAgentCommandsRequirement
|
|
|
|
__all__ = ['PluginMixin', 'PluginRequirement', 'JupyterRequirement', 'SWEAgentCommandsRequirement']
|