mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
15 lines
340 B
Python
15 lines
340 B
Python
from dataclasses import dataclass
|
|
|
|
from openhands.events.event_store_abc import EventStoreABC
|
|
|
|
|
|
@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
|