Fix: Memory-related bug fixes (#12226)

### What problem does this PR solve?

Fix: bugs fix
- table -> Table
- memory delete fail
- memory copywriting modified

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-12-26 12:24:05 +08:00
committed by GitHub
parent 52dbacc506
commit 894bf995bb
14 changed files with 270 additions and 58 deletions

View File

@ -125,8 +125,9 @@ Procedural Memory: Learned skills, habits, and automated procedures.`,
},
memory: {
messages: {
forgetMessageTip: 'Are you sure you want to forget?',
messageDescription:
'Memory retrieval is configured with Similarity threshold, Keyword similarity weight, and Top N from Advanced Settings.',
'Memory extract is configured with Prompts and Temperature from Advanced Settings.',
copied: 'Copied!',
contentEmbed: 'Content embed',
content: 'Content',
@ -216,6 +217,10 @@ Procedural Memory: Learned skills, habits, and automated procedures.`,
deleteSettingFieldWarn: `This field will be deleted; existing metadata won't be affected.`,
deleteSettingValueWarn: `This value will be deleted; existing metadata won't be affected.`,
},
redoAll: 'Clear existing chunks',
applyAutoMetadataSettings: 'Apply global auto-metadata settings',
parseFileTip: 'Are you sure to parse?',
parseFile: 'Parse file',
emptyMetadata: 'No metadata',
metadataField: 'Metadata field',
systemAttribute: 'System attribute',
@ -455,7 +460,7 @@ Procedural Memory: Learned skills, habits, and automated procedures.`,
manualSetup: 'Choose pipeline',
builtIn: 'Built-in',
titleDescription:
'Update your knowledge base configuration here, particularly the chunking method.',
'Update your memory configuration here, particularly the LLM and prompts.',
name: 'Knowledge base name',
photo: 'Knowledge base photo',
photoTip: 'You can upload a file with 4 MB',

View File

@ -117,8 +117,8 @@ export default {
},
memory: {
messages: {
messageDescription:
'记忆检索已在高级设置中配置相似度阈值、关键词相似度权重和前N个结果。',
forgetMessageTip: '确定遗忘吗?',
messageDescription: '记忆提取使用高级设置中的提示词和温度值进行配置。',
copied: '已复制!',
contentEmbed: '内容嵌入',
content: '内容',
@ -201,6 +201,10 @@ export default {
deleteSettingFieldWarn: `此字段将被删除;现有元数据不会受到影响。`,
deleteSettingValueWarn: `此值将被删除;现有元数据不会受到影响。`,
},
redoAll: '清除现有分块',
applyAutoMetadataSettings: '应用全局自动元数据设置',
parseFileTip: '您确定要解析吗?',
parseFile: '解析文件',
emptyMetadata: '无元数据',
localUpload: '本地上传',
fileSize: '文件大小',
@ -418,7 +422,7 @@ export default {
parseType: '解析方法',
manualSetup: '选择pipeline',
builtIn: '内置',
titleDescription: '在这里更新您的知识库详细信息,尤其是切片方法。',
titleDescription: '在这里更新您的记忆配置,特别是大语言模型和提示词。',
name: '知识库名称',
photo: '知识库图片',
photoTip: '你可以上传4MB的文件',