Files
OpenHands/opendevin/runtime/plugins/requirement.py
Robert Brennan fadcdc117e Migrate to new folder structure in preparation for refactor (#1531)
* fix up folder structure

* update docs

* fix imports

* fix imports

* fix imoprt

* fix imports

* fix imports

* fix imports

* fix test import

* fix tests

* fix main import
2024-05-02 17:01:54 +00:00

14 lines
311 B
Python

from dataclasses import dataclass
@dataclass
class PluginRequirement:
"""Requirement for a plugin."""
name: str
# FOLDER/FILES to be copied to the sandbox
host_src: str
sandbox_dest: str
# NOTE: bash_script_path should be relative to the `sandbox_dest` path
bash_script_path: str