Files
OpenHands/openhands/server/session/conversation_init_data.py
2024-12-23 16:00:05 +00:00

14 lines
364 B
Python

from dataclasses import dataclass
from openhands.server.settings import Settings
@dataclass
class ConversationInitData(Settings):
"""
Session initialization data for the web environment - a deep copy of the global config is made and then overridden with this data.
"""
github_token: str | None = None
selected_repository: str | None = None