feat: 更新模型配置,替换短期记忆构建和决策模型,调整长期记忆构建模型

This commit is contained in:
Windpicker-owo
2025-11-19 19:24:06 +08:00
parent cf48d02ed3
commit 5cfc74f276
2 changed files with 7 additions and 5 deletions

View File

@@ -187,7 +187,9 @@ class ShortTermMemoryManager:
"importance": 0.7, "importance": 0.7,
"attributes": {{ "attributes": {{
"time": "时间信息", "time": "时间信息",
"location": "地点信息" "attribute1": "其他属性1"
"attribute2": "其他属性2"
...
}} }}
}} }}
``` ```

View File

@@ -218,21 +218,21 @@ max_tokens = 800
#------------记忆系统专用模型------------ #------------记忆系统专用模型------------
[model_task_config.memory_short_term_builder] # 短期记忆构建模型(感知→短期格式化) [model_task_config.memory_short_term_builder] # 短期记忆构建模型(感知→短期格式化)
model_list = ["siliconflow-deepseek-ai/DeepSeek-V3.2-Exp"] model_list = ["siliconflow-Qwen/Qwen3-Next-80B-A3B-Instruct"]
temperature = 0.2 temperature = 0.2
max_tokens = 800 max_tokens = 800
[model_task_config.memory_short_term_decider] # 短期记忆决策模型(决定合并/更新/新建/丢弃) [model_task_config.memory_short_term_decider] # 短期记忆决策模型(决定合并/更新/新建/丢弃)
model_list = ["siliconflow-deepseek-ai/DeepSeek-V3.2-Exp"] model_list = ["siliconflow-Qwen/Qwen3-Next-80B-A3B-Instruct"]
temperature = 0.2 temperature = 0.2
max_tokens = 1000 max_tokens = 1000
[model_task_config.memory_long_term_builder] # 长期记忆构建模型(短期→长期图结构) [model_task_config.memory_long_term_builder] # 长期记忆构建模型(短期→长期图结构)
model_list = ["siliconflow-Qwen/Qwen3-Next-80B-A3B-Instruct"] model_list = ["siliconflow-deepseek-ai/DeepSeek-V3.2-Exp"]
temperature = 0.2 temperature = 0.2
max_tokens = 1500 max_tokens = 1500
[model_task_config.memory_judge] # 记忆检索裁判模型(判断检索是否充足) [model_task_config.memory_judge] # 记忆检索裁判模型(判断检索是否充足)
model_list = ["siliconflow-THUDM/GLM-4-9B-0414"] model_list = ["qwen3-14b"]
temperature = 0.1 temperature = 0.1
max_tokens = 600 max_tokens = 600