dataset-settings.ts 1.7 KB

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