From e4a7333b793691fe2b36f958aff23ba6bcd5de41 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 29 Apr 2026 16:54:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=20LLM=5FTEMPERATURE=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=8F=82=E6=95=B0=E9=BB=98=E8=AE=A4=E5=80=BC?= =?UTF-8?q?=E4=B8=BA=200.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/config.py b/app/core/config.py index 84861bd1..b8e58636 100644 --- a/app/core/config.py +++ b/app/core/config.py @@ -516,7 +516,7 @@ class ConfigModel(BaseModel): # LLM最大上下文Token数量(K) LLM_MAX_CONTEXT_TOKENS: int = 64 # LLM温度参数 - LLM_TEMPERATURE: float = 0.1 + LLM_TEMPERATURE: float = 0.3 # LLM最大迭代次数 LLM_MAX_ITERATIONS: int = 128 # LLM工具调用超时时间(秒)