From 5b9f418617a1feb4b5434714591c135313dd976d Mon Sep 17 00:00:00 2001 From: SengokuCola <1026294844@qq.com> Date: Sat, 18 Apr 2026 23:02:20 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E7=94=9F=E6=88=90=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/default_model_config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/default_model_config.py b/src/config/default_model_config.py index a091fc88..7ae93a43 100644 --- a/src/config/default_model_config.py +++ b/src/config/default_model_config.py @@ -9,7 +9,8 @@ DEFAULT_PROVIDER_TEMPLATES: list[dict[str, Any]] = [ { "name": "BaiLian", "base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1", - "auth_type": OpenAICompatibleAuthType.NONE.value, + "api_key": "your-api-key", + "auth_type": OpenAICompatibleAuthType.BEARER.value, } ]