mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
15 lines
332 B
Python
15 lines
332 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
|
|
api_key: str | None
|
|
event_store: EventStoreABC
|