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

17 lines
437 B
Python

from dataclasses import dataclass
from openhands.core.schema import ObservationType
from openhands.events.observation.observation import Observation
@dataclass
class AgentStateChangedObservation(Observation):
"""This data class represents the result from delegating to another agent"""
agent_state: str
observation: str = ObservationType.AGENT_STATE_CHANGED
@property
def message(self) -> str:
return ''