mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
16 lines
402 B
Python
16 lines
402 B
Python
from dataclasses import dataclass
|
|
|
|
from openhands.core.schema import ObservationType
|
|
from openhands.events.observation.observation import Observation
|
|
|
|
|
|
@dataclass
|
|
class UserRejectObservation(Observation):
|
|
"""This data class represents the result of a rejected action."""
|
|
|
|
observation: str = ObservationType.USER_REJECTED
|
|
|
|
@property
|
|
def message(self) -> str:
|
|
return self.content
|