From 43330042b86252cb0d50852201336488b4001454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AC=A7=E9=98=B3=E6=B4=8B?= <2443479321@qq.com> Date: Sun, 13 Sep 2026 16:53:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=90=91=E9=87=8F=E7=BB=B4=E5=BA=A6?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5.env=E9=87=8C=E9=9D=A2=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tool/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/llm.py b/tool/llm.py index 029bbaa..13891a3 100644 --- a/tool/llm.py +++ b/tool/llm.py @@ -221,7 +221,7 @@ class LLMClient: payload = { "model": embed_model, "input": texts, - # "dimensions": self.cfg.embed_dimensions, + "dimensions": self.cfg.embed_dimensions, } async with backend.client(self.cfg.timeout) as client: r = await client.post(url, headers=backend.headers, json=payload)