2023-05-15 08:51:32 +08:00
const translation = {
2023-11-27 17:22:16 +08:00
title : 'Knowledge settings' ,
desc : 'Here you can modify the properties and working methods of the Knowledge.' ,
2023-05-15 08:51:32 +08:00
form : {
2023-11-27 17:22:16 +08:00
name : 'Knowledge Name' ,
namePlaceholder : 'Please enter the Knowledge name' ,
2023-05-15 08:51:32 +08:00
nameError : 'Name cannot be empty' ,
2023-11-27 17:22:16 +08:00
desc : 'Knowledge description' ,
descInfo : 'Please write a clear textual description to outline the content of the Knowledge. This description will be used as a basis for matching when selecting from multiple Knowledge for inference.' ,
descPlaceholder : 'Describe what is in this Knowledge. A detailed description allows AI to access the content of the Knowledge in a timely manner. If empty, Dify will use the default hit strategy.' ,
descWrite : 'Learn how to write a good Knowledge description.' ,
2023-05-15 08:51:32 +08:00
permissions : 'Permissions' ,
permissionsOnlyMe : 'Only me' ,
permissionsAllMember : 'All team members' ,
2024-07-04 16:21:40 +08:00
permissionsInvitedMembers : 'Partial team members' ,
me : '(You)' ,
2023-05-15 08:51:32 +08:00
indexMethod : 'Index Method' ,
indexMethodHighQuality : 'High Quality' ,
2024-06-20 23:12:02 +08:00
indexMethodHighQualityTip : 'Call Embedding model for processing to provide higher accuracy when users query.' ,
2023-05-15 08:51:32 +08:00
indexMethodEconomy : 'Economical' ,
indexMethodEconomyTip : 'Use offline vector engines, keyword indexes, etc. to reduce accuracy without spending tokens' ,
2023-08-18 17:37:31 +08:00
embeddingModel : 'Embedding Model' ,
embeddingModelTip : 'Change the embedded model, please go to ' ,
embeddingModelTipLink : 'Settings' ,
2023-11-18 11:53:35 +08:00
retrievalSetting : {
title : 'Retrieval setting' ,
learnMore : 'Learn more' ,
description : ' about retrieval method.' ,
2023-11-27 17:22:16 +08:00
longDescription : ' about retrieval method, you can change this at any time in the Knowledge settings.' ,
2023-11-18 11:53:35 +08:00
} ,
2023-05-15 08:51:32 +08:00
save : 'Save' ,
} ,
}
export default translation