From b8c1455c57ad2c41fe4e0867cea34c70d1294866 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:35:15 +0000 Subject: [PATCH 1/2] Initial plan From 90c47df665994fc6b839fbffc576bd041853795a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:39:11 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=E7=A7=BB=E9=99=A4=20EMBEDDING=5FMODEL=20?= =?UTF-8?q?=E7=A1=AC=E7=BC=96=E7=A0=81=E9=BB=98=E8=AE=A4=E5=80=BC=EF=BC=8C?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E5=BF=85=E5=A1=AB=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: BukeLy <19304666+BukeLy@users.noreply.github.com> --- src/config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/config.py b/src/config.py index 0d1f8f5..97853b8 100644 --- a/src/config.py +++ b/src/config.py @@ -43,10 +43,7 @@ class EmbeddingConfig(BaseSettings): api_key: str = Field(..., description="Embedding API Key") base_url: str = Field(..., description="Embedding API Base URL") - model: str = Field( - default="Qwen/Qwen3-Embedding-0.6B", - description="Embedding Model Name" - ) + model: str = Field(..., description="Embedding Model Name") dim: int = Field( default=1024, description="Embedding Dimension (Must match model output dimension!)"