mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
19 lines
400 B
Python
19 lines
400 B
Python
from dataclasses import dataclass
|
|
|
|
from opendevin.schema import ObservationType
|
|
|
|
from .base import Observation
|
|
|
|
|
|
@dataclass
|
|
class AgentErrorObservation(Observation):
|
|
"""
|
|
This data class represents an error encountered by the agent.
|
|
"""
|
|
|
|
observation: str = ObservationType.ERROR
|
|
|
|
@property
|
|
def message(self) -> str:
|
|
return 'Oops. Something went wrong: ' + self.content
|