zzz / openhands /server /session /conversation_init_data.py
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
388 Bytes
from pydantic import Field
from openhands.server.settings import Settings
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 = Field(default=None)
selected_repository: str | None = Field(default=None)