mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-28 16:20:34 +08:00
14 lines
311 B
Python
14 lines
311 B
Python
# -*- coding: utf-8 -*-
|
|
from pydantic import AnyHttpUrl, BaseSettings
|
|
|
|
|
|
class BotSettings(BaseSettings):
|
|
BACKEND_URL: AnyHttpUrl = "http://localhost:8080"
|
|
API_KEY: str = "any_key"
|
|
BOT_TOKEN: str
|
|
BOT_CHANNEL_NAME: str = "bot"
|
|
TEST_GUILD: str = None
|
|
|
|
|
|
settings = BotSettings(_env_file=".env")
|