Spaces:
Build error
Build error
from dataclasses import dataclass, field | |
from openhands.events.event_store_abc import EventStoreABC | |
from openhands.storage.data_models.conversation_status import ConversationStatus | |
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) | |