Files
OpenHands/opendevin/action/base.py
Engel Nyst caabfab7e2 Property 'message' sent to llm (#1198)
* Add action with content, no message, to history

* fix to_memory(), add it to serialization tests

* Actions without 'message' in completion too
2024-04-18 06:51:07 -04:00

62 lines
1.4 KiB
Python

from dataclasses import dataclass, asdict
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.
This is used when the agent need to receive user follow-up messages from the frontend.
"""
action: str = ActionType.NULL
@property
def message(self) -> str:
return 'No action'