Skip to content

Config

DiscordConfig

Bases: BaseSettings

discord_bot_token

discord_bot_token: str = Field(
    ...,
    description="The token from discord for calling models.",
    examples=["MTEz-..."],
    validation_alias=AliasChoices("DISCORD_BOT_TOKEN"),
    frozen=False,
    deprecated=False,
)

discord_test_server_id

discord_test_server_id: Optional[str] = Field(
    default=None,
    description="The id of the test server for testing the bot.",
    examples=["1143289646042853487", "981592566745149522"],
    validation_alias=AliasChoices("DISCORD_TEST_SERVER_ID"),
    frozen=False,
    deprecated=False,
)