mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* Replace OpenDevin with OpenHands * Update CONTRIBUTING.md * Update README.md * Update README.md * update poetry lock; move opendevin folder to openhands * fix env var * revert image references in docs * revert permissions * revert permissions --------- Co-authored-by: Xingyao Wang <xingyao6@illinois.edu>
43 lines
761 B
Python
43 lines
761 B
Python
from dotenv import load_dotenv
|
|
|
|
from openhands.controller.agent import Agent
|
|
|
|
from .micro.agent import MicroAgent
|
|
from .micro.registry import all_microagents
|
|
|
|
load_dotenv()
|
|
|
|
|
|
from . import ( # noqa: E402
|
|
browsing_agent,
|
|
codeact_agent,
|
|
codeact_swe_agent,
|
|
delegator_agent,
|
|
dummy_agent,
|
|
planner_agent,
|
|
)
|
|
|
|
__all__ = [
|
|
'codeact_agent',
|
|
'codeact_swe_agent',
|
|
'planner_agent',
|
|
'delegator_agent',
|
|
'dummy_agent',
|
|
'browsing_agent',
|
|
]
|
|
|
|
for agent in all_microagents.values():
|
|
name = agent['name']
|
|
prompt = agent['prompt']
|
|
|
|
anon_class = type(
|
|
name,
|
|
(MicroAgent,),
|
|
{
|
|
'prompt': prompt,
|
|
'agent_definition': agent,
|
|
},
|
|
)
|
|
|
|
Agent.register(name, anon_class)
|