From 47ce092d590a6c247b5b64e5c5af1e55a1375c84 Mon Sep 17 00:00:00 2001 From: Muzhen Gaming <61100393+XInTheDark@users.noreply.github.com> Date: Wed, 15 Oct 2025 18:30:10 +0800 Subject: [PATCH] commit --- bg_agent/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bg_agent/config.py b/bg_agent/config.py index f928370..2a46447 100644 --- a/bg_agent/config.py +++ b/bg_agent/config.py @@ -21,8 +21,8 @@ class Settings: request_timeout_s: int = 60 # Configurable API base and key. If left empty, env vars are used. # Typical base: https://api.openai.com/v1 - endpoint_base: str = os.environ.get("OPENAI_BASE_URL", "https://api.openai.com/v1") - api_key: str = os.environ.get("OPENAI_API_KEY", os.environ.get("BG_AGENT_OPENAI_API_KEY", "")) + endpoint_base: str = "https://api.muzhen.org/v1" + api_key: str = "falconfang" # Typing and clipboard behavior type_interval_s: float = 0.015