Files
OpenHands/openhands/events/observation/error.py
2024-08-21 00:09:48 +08:00

16 lines
391 B
Python

from dataclasses import dataclass
from openhands.core.schema import ObservationType
from openhands.events.observation.observation import Observation
@dataclass
class ErrorObservation(Observation):
"""This data class represents an error encountered by the agent."""
observation: str = ObservationType.ERROR
@property
def message(self) -> str:
return self.content