Some checks failed
Pre-commit / run (ubuntu-latest) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_en (ubuntu-latest, 3.10) (push) Has been cancelled
Deploy Sphinx documentation to Pages / build_zh (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (macos-15, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (ubuntu-latest, 3.12) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.10) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.11) (push) Has been cancelled
Python Unittest Coverage / test (windows-latest, 3.12) (push) Has been cancelled
34 lines
1.5 KiB
Python
34 lines
1.5 KiB
Python
import os
|
|
from pathlib import Path
|
|
|
|
try:
|
|
from dotenv import load_dotenv
|
|
load_dotenv(Path(__file__).resolve().parents[1] / '.env')
|
|
except Exception:
|
|
pass
|
|
|
|
QINGJIAN_WS_URI = os.getenv("QINGJIAN_WS_URI", "ws://127.0.0.1:9528")
|
|
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY", "").strip()
|
|
OPENAI_BASE_URL = os.getenv("OPENAI_BASE_URL", "https://ark.cn-beijing.volces.com/api/v3").strip()
|
|
OPENAI_MODEL_NAME = os.getenv("OPENAI_MODEL_NAME", "doubao-seed-2-0-pro-260215").strip()
|
|
|
|
MESSAGE_DEBOUNCE_SECONDS = int(os.getenv("MESSAGE_DEBOUNCE_SECONDS", "6"))
|
|
AUTO_QUOTE_WAIT_SECONDS = int(os.getenv("AUTO_QUOTE_WAIT_SECONDS", "18"))
|
|
AGENT_MAX_ITERS = int(os.getenv("AGENT_MAX_ITERS", "3"))
|
|
FAST_ROUTE_ENABLED = os.getenv("FAST_ROUTE_ENABLED", "1").strip() in {"1", "true", "True", "yes", "on"}
|
|
SHORT_REPLY_MAX_CHARS = int(os.getenv("SHORT_REPLY_MAX_CHARS", "20"))
|
|
|
|
STORE_BACKEND = os.getenv("STORE_BACKEND", "sqlite").strip().lower()
|
|
STORE_SQLITE_PATH = os.getenv("STORE_SQLITE_PATH", "").strip()
|
|
|
|
MYSQL_HOST = os.getenv("MYSQL_HOST", "127.0.0.1").strip()
|
|
MYSQL_PORT = int(os.getenv("MYSQL_PORT", "3306"))
|
|
MYSQL_USER = os.getenv("MYSQL_USER", "root").strip()
|
|
MYSQL_PASSWORD = os.getenv("MYSQL_PASSWORD", "").strip()
|
|
MYSQL_DATABASE = os.getenv("MYSQL_DATABASE", "ai_cs").strip()
|
|
MYSQL_TABLE_PREFIX = os.getenv("MYSQL_TABLE_PREFIX", "qjcs_").strip()
|
|
|
|
HTTP_HOST = os.getenv("HTTP_HOST", "127.0.0.1").strip()
|
|
HTTP_PORT = int(os.getenv("HTTP_PORT", "6060"))
|
|
TIANWANG_CALLBACK_URL = os.getenv("TIANWANG_CALLBACK_URL", "http://139.199.3.75:18789/api/callback").strip()
|