dataset-settings.en.ts 1.2 KB

1234567891011121314151617181920212223242526
  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. embeddingModel: 'Embedding Model',
  19. embeddingModelTip: 'Change the embedded model, please go to ',
  20. embeddingModelTipLink: 'Settings',
  21. save: 'Save',
  22. },
  23. }
  24. export default translation