OpenHands/openhands/server/data_models/agent_loop_info.py
Tim O'Farrell 47209e794a
Runtime Status Fixes (#9050)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-06-11 09:28:17 -06:00

20 lines
618 B
Python

from dataclasses import dataclass, field
from openhands.events.event_store_abc import EventStoreABC
from openhands.runtime.runtime_status import RuntimeStatus
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)
runtime_status: RuntimeStatus | None = None