Backup-bdg's picture
Upload 964 files
51ff9e5 verified
raw
history blame contribute delete
511 Bytes
from dataclasses import dataclass, field
from openhands.events.event_store_abc import EventStoreABC
from openhands.storage.data_models.conversation_status import ConversationStatus
@dataclass
class AgentLoopInfo:
"""
Information about an agent loop - the URL on which to locate it and the event store
"""
conversation_id: str
url: str | None
session_api_key: str | None
event_store: EventStoreABC | None
status: ConversationStatus = field(default=ConversationStatus.RUNNING)