Files
OpenHands/opendevin/action/base.py
Jirka Borovec 0c2ebfd6e1 Ruff: use I rule for isort (#1410)
Ruff: use I rule for isort
2024-04-29 15:41:58 -07:00

62 lines
1.3 KiB
Python

from dataclasses import asdict, dataclass
from typing import TYPE_CHECKING
from opendevin.schema import ActionType
if TYPE_CHECKING:
from opendevin.controller import AgentController
from opendevin.observation import Observation
@dataclass
class Action:
async def run(self, controller: 'AgentController') -> 'Observation':
raise NotImplementedError
def to_memory(self):
d = asdict(self)
try:
v = d.pop('action')
except KeyError:
raise NotImplementedError(f'{self=} does not have action attribute set')
return {'action': v, 'args': d}
def to_dict(self):
d = self.to_memory()
d['message'] = self.message
return d
@property
def executable(self) -> bool:
raise NotImplementedError
@property
def message(self) -> str:
raise NotImplementedError
@dataclass
class ExecutableAction(Action):
@property
def executable(self) -> bool:
return True
@dataclass
class NotExecutableAction(Action):
@property
def executable(self) -> bool:
return False
@dataclass
class NullAction(NotExecutableAction):
"""An action that does nothing.
"""
action: str = ActionType.NULL
@property
def message(self) -> str:
return 'No action'