dataset-settings.en.ts 1.0 KB

12345678910111213141516171819202122
  1. const translation = {
  2. title: 'Dataset settings',
  3. desc: 'Here you can modify the properties and working methods of the dataset.',
  4. form: {
  5. name: 'Dataset Name',
  6. nameError: 'Name cannot be empty',
  7. desc: 'Dataset description',
  8. descPlaceholder: 'Describe what is in this data set. A detailed description allows AI to access the content of the data set in a timely manner. If empty, Dify will use the default hit strategy.',
  9. descWrite: 'Learn how to write a good dataset description.',
  10. permissions: 'Permissions',
  11. permissionsOnlyMe: 'Only me',
  12. permissionsAllMember: 'All team members',
  13. indexMethod: 'Index Method',
  14. indexMethodHighQuality: 'High Quality',
  15. indexMethodHighQualityTip: 'Call OpenAI\'s embedding interface for processing to provide higher accuracy when users query.',
  16. indexMethodEconomy: 'Economical',
  17. indexMethodEconomyTip: 'Use offline vector engines, keyword indexes, etc. to reduce accuracy without spending tokens',
  18. save: 'Save',
  19. },
  20. }
  21. export default translation