From f5a057ddc555cf0e7e33cfe1f22cd98ec048ec0c Mon Sep 17 00:00:00 2001 From: lixinyue <2569494688@qq.com> Date: Wed, 31 Dec 2025 11:39:30 +0800 Subject: [PATCH] =?UTF-8?q?data=5Fconfig=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/app/models/data_config_model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/app/models/data_config_model.py b/api/app/models/data_config_model.py index 870d46b2..2914432e 100644 --- a/api/app/models/data_config_model.py +++ b/api/app/models/data_config_model.py @@ -51,8 +51,8 @@ class DataConfig(Base): # 自我反思配置 enable_self_reflexion = Column(Boolean, default=False, comment="是否启用自我反思") iteration_period = Column(String, default="3", comment="反思迭代周期") - reflexion_range = Column(String, default="retrieval", comment="反思范围:部分/全部") - baseline = Column(String, default="time", comment="基线:时间/事实/时间和事实") + reflexion_range = Column(String, default="partial", comment="反思范围:部分/全部") + baseline = Column(String, default="TIME", comment="基线:时间/事实/时间和事实") reflection_model_id = Column(String, nullable=True, comment="反思模型ID") memory_verify = Column(Boolean, default=True, comment="记忆验证") quality_assessment = Column(Boolean, default=True, comment="质量评估")