cortico-world-memory 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "cortico-world-memory",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
- "description": "Cortico World 扩展:三级记忆 + Hybrid Recall 向量记忆(移植自 E:/qq_bot memory 系统与 memory_server 向量记忆 sidecar,qq_bot 源码零改动)。",
5
+ "description": "Cortico World 扩展:五层记忆(事实库/知识库/反思/人格/档案)+ 三级记忆底座 + Hybrid Recall 向量混合检索(移植自 E:/qq_bot 的记忆系统与 memory_server 向量 sidecar,qq_bot 源码零改动)。",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "cortico-world",
package/src/ENV_PROMPT.md CHANGED
@@ -1,4 +1,4 @@
1
- 你带有一套自己的记忆(三级记忆 + 混合检索记忆库)。
1
+ 你带有一套自己的记忆(五层记忆:事实库/知识库/反思/人格/档案 + 三级记忆底座 + 混合检索记忆库)。
2
2
 
3
3
  ## 记忆机制
4
4
  - {{memoryContext}}
package/src/config.ts CHANGED
@@ -57,7 +57,7 @@ export const MEMORY_CONFIG_GROUP: ConfigGroup = {
57
57
  schema: {
58
58
  type: 'object',
59
59
  title: '记忆系统',
60
- description: '三级记忆(短期/摘要/话题)与 Hybrid Recall 向量记忆(移植自 qq_bot)。',
60
+ description: '五层记忆(事实库/知识库/反思/人格/档案)+ 三级记忆底座(短期/摘要/话题)与 Hybrid Recall 向量混合检索(移植自 qq_bot)。',
61
61
  properties: {
62
62
  'worlds.memory.maxHistory': { type: 'number', title: '短期窗口(条)', description: '每个 scope 保留的最近对话条数。' },
63
63
  'worlds.memory.maxVectorsPerScope': { type: 'number', title: '向量上限(条/scope)', description: '超出截掉最旧的。' },