File size: 1,788 Bytes
a8b3f00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
const translation = {
  title: 'Knowledge settings',
  desc: 'Here you can modify the properties and retrieval settings of this Knowledge.',
  form: {
    name: 'Knowledge Name',
    namePlaceholder: 'Please enter the Knowledge name',
    nameError: 'Name cannot be empty',
    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\'s in this Knowledge (optional)',
    descWrite: 'Learn how to write a good Knowledge description.',
    permissions: 'Permissions',
    permissionsOnlyMe: 'Only me',
    permissionsAllMember: 'All team members',
    permissionsInvitedMembers: 'Partial team members',
    me: '(You)',
    indexMethod: 'Index Method',
    indexMethodHighQuality: 'High Quality',
    indexMethodHighQualityTip: 'Call Embedding model for processing to provide higher accuracy when users query.',
    indexMethodEconomy: 'Economical',
    indexMethodEconomyTip: 'Use offline vector engines, keyword indexes, etc. to reduce accuracy without spending tokens',
    embeddingModel: 'Embedding Model',
    embeddingModelTip: 'Change the embedded model, please go to ',
    embeddingModelTipLink: 'Settings',
    retrievalSetting: {
      title: 'Retrieval Setting',
      learnMore: 'Learn more',
      description: ' about retrieval method.',
      longDescription: ' about retrieval method, you can change this at any time in the Knowledge settings.',
    },
    externalKnowledgeAPI: 'External Knowledge API',
    externalKnowledgeID: 'External Knowledge ID',
    retrievalSettings: 'Retrieval Settings',
    save: 'Save',
  },
}

export default translation