File size: 388 Bytes
246d201
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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)