Engel Nyst e65e0a98f0
Remove/reduce unused content in a CmdOutputObservation (#7404)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-07-17 19:34:46 +02:00

16 lines
341 B
Python

from dataclasses import dataclass
from openhands.events.event import Event
@dataclass
class Observation(Event):
"""Base class for observations from the environment.
Attributes:
content: The content of the observation. For large observations,
this might be truncated when stored.
"""
content: str