[Feat] Custom MicroAgents. (#4983)

Co-authored-by: diwu-sf <di.wu@shadowfaxdata.com>
This commit is contained in:
Raj Maheshwari
2024-12-07 03:41:06 +05:30
committed by GitHub
parent cf157c86b3
commit 2b06e4e5d0
13 changed files with 100 additions and 28 deletions

View File

@@ -11,6 +11,7 @@ from openhands.core.exceptions import (
)
from openhands.llm.llm import LLM
from openhands.runtime.plugins import PluginRequirement
from openhands.utils.prompt import PromptManager
class Agent(ABC):
@@ -33,6 +34,7 @@ class Agent(ABC):
self.llm = llm
self.config = config
self._complete = False
self.prompt_manager: PromptManager | None = None
@property
def complete(self) -> bool: