mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
* Merge branch 'main' of https://github.com/JayQuimby/OpenDevin * Using commands.sh for ACI * parsing, prompting, and actions modifications * added start and end index to read and write * bug fixes and test updates * Lint code changes to ensure code is proper * State management, bugs, prompts * Prompt Engineering * exception handling * big fixes * more bug fixes * merge conflicts * Renamed SWEAgent, basic tests, bug fixes * prompt changes, bug fixes * merge conflicts * merge conflict * start and end line for read and write * more merge conflicts * env error * linter error * read fixed, prompt change, example added * added x_line:end read operation --------- Co-authored-by: Robert Brennan <accounts@rbren.io>
13 lines
361 B
Python
13 lines
361 B
Python
|
|
from dotenv import load_dotenv
|
|
load_dotenv()
|
|
|
|
# Import agents after environment variables are loaded
|
|
from . import monologue_agent # noqa: E402
|
|
from . import codeact_agent # noqa: E402
|
|
from . import planner_agent # noqa: E402
|
|
from . import SWE_agent # noqa: E402
|
|
|
|
__all__ = ['monologue_agent', 'codeact_agent',
|
|
'planner_agent', 'SWE_agent']
|