mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
Fix:Bugs fix (Reduce metadata saving steps ...) (#12095)
### What problem does this PR solve? Fix:Bugs fix - Configure memory and metadata (in Chinese) - Add indexing modal - Reduce metadata saving steps ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --------- Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
@ -176,6 +176,7 @@ Procedural Memory: Learned skills, habits, and automated procedures.`,
|
||||
},
|
||||
knowledgeDetails: {
|
||||
metadata: {
|
||||
fieldSetting: 'Field settings',
|
||||
changesAffectNewParses: 'Changes affect new parses only.',
|
||||
editMetadataForDataset: 'View and edit metadata for ',
|
||||
restrictDefinedValues: 'Restrict to defined values',
|
||||
@ -363,7 +364,11 @@ Procedural Memory: Learned skills, habits, and automated procedures.`,
|
||||
reRankModelWaring: 'Re-rank model is very time consuming.',
|
||||
},
|
||||
knowledgeConfiguration: {
|
||||
globalIndexModelTip:
|
||||
'Used to generate Knowledge graphs, RAPTOR, auto-metadata, auto-keyword and auto-question. Model performance will affects generation quality.',
|
||||
globalIndexModel: 'Indexing model',
|
||||
settings: 'Settings',
|
||||
autoMetadataTip: `Automatically generate metadata. Applies to new files during parsing. Existing files require re-parsing to update (chunks remain preserved). Be aware that extra tokens will be consumed by the indexing model specified in 'Configuration'.`,
|
||||
imageContextWindow: 'Image context window',
|
||||
imageContextWindowTip:
|
||||
'Captures N tokens of text above and below the image to provide richer background context for the image chunk.',
|
||||
|
||||
@ -93,6 +93,67 @@ export default {
|
||||
search: '搜索',
|
||||
welcome: '欢迎来到',
|
||||
dataset: '知识库',
|
||||
Memories: '记忆',
|
||||
},
|
||||
memories: {
|
||||
llmTooltip: '分析对话内容,提取关键信息,并生成结构化的记忆摘要。',
|
||||
embeddingModelTooltip:
|
||||
'将文本转换为数值向量,用于语义相似度搜索和记忆检索。',
|
||||
embeddingModelError: '记忆类型为必填项,且"原始"类型不可删除。',
|
||||
memoryTypeTooltip: `原始: 用户与代理之间的原始对话内容(默认必需)。
|
||||
语义记忆: 关于用户和世界的通用知识和事实。
|
||||
情景记忆: 带时间戳的特定事件和经历记录。
|
||||
程序记忆: 学习的技能、习惯和自动化程序。`,
|
||||
editName: '编辑名称',
|
||||
memory: '记忆',
|
||||
createMemory: '创建记忆',
|
||||
name: '名称',
|
||||
memoryNamePlaceholder: '记忆名称',
|
||||
memoryType: '记忆类型',
|
||||
embeddingModel: '嵌入模型',
|
||||
selectModel: '选择模型',
|
||||
llm: '大语言模型',
|
||||
delMemoryWarn: `删除后,此记忆中的所有消息都将被删除,代理将无法检索。`,
|
||||
},
|
||||
memory: {
|
||||
messages: {
|
||||
messageDescription:
|
||||
'记忆检索已在高级设置中配置相似度阈值、关键词相似度权重和前N个结果。',
|
||||
copied: '已复制!',
|
||||
contentEmbed: '内容嵌入',
|
||||
content: '内容',
|
||||
delMessageWarn: `遗忘后,代理将无法检索此消息。`,
|
||||
forgetMessage: '遗忘消息',
|
||||
sessionId: '会话ID',
|
||||
agent: '代理',
|
||||
type: '类型',
|
||||
validDate: '有效日期',
|
||||
forgetAt: '遗忘于',
|
||||
source: '来源',
|
||||
enable: '启用',
|
||||
action: '操作',
|
||||
},
|
||||
config: {
|
||||
avatar: '头像',
|
||||
description: '描述',
|
||||
memorySize: '记忆大小',
|
||||
advancedSettings: '高级设置',
|
||||
permission: '权限',
|
||||
onlyMe: '仅自己',
|
||||
team: '团队',
|
||||
storageType: '存储类型',
|
||||
storageTypePlaceholder: '请选择存储类型',
|
||||
forgetPolicy: '遗忘策略',
|
||||
temperature: '温度',
|
||||
systemPrompt: '系统提示词',
|
||||
systemPromptPlaceholder: '请输入系统提示词',
|
||||
userPrompt: '用户提示词',
|
||||
userPromptPlaceholder: '请输入用户提示词',
|
||||
},
|
||||
sideBar: {
|
||||
messages: '消息',
|
||||
configuration: '配置',
|
||||
},
|
||||
},
|
||||
knowledgeList: {
|
||||
welcome: '欢迎回来',
|
||||
@ -106,6 +167,22 @@ export default {
|
||||
parserRequired: '分块方法必填',
|
||||
},
|
||||
knowledgeDetails: {
|
||||
metadata: {
|
||||
fieldSetting: '字段设置',
|
||||
changesAffectNewParses: '更改仅影响新解析。',
|
||||
editMetadataForDataset: '查看和编辑元数据于 ',
|
||||
restrictDefinedValues: '限制为已定义值',
|
||||
metadataGenerationSettings: '元数据生成设置',
|
||||
manageMetadataForDataset: '管理此数据集的元数据',
|
||||
manageMetadata: '管理元数据',
|
||||
metadata: '元数据',
|
||||
values: '值',
|
||||
action: '操作',
|
||||
field: '字段',
|
||||
description: '描述',
|
||||
fieldName: '字段名',
|
||||
editMetadata: '编辑元数据',
|
||||
},
|
||||
localUpload: '本地上传',
|
||||
fileSize: '文件大小',
|
||||
fileType: '文件类型',
|
||||
|
||||
Reference in New Issue
Block a user