dataset-settings.en.ts 1.4 KB

123456789101112131415161718192021222324252627
  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. namePlaceholder: 'Please enter the dataset name',
  7. nameError: 'Name cannot be empty',
  8. desc: 'Dataset description',
  9. descInfo: 'Please write a clear textual description to outline the content of the dataset. This description will be used as a basis for matching when selecting from multiple datasets for inference.',
  10. 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.',
  11. descWrite: 'Learn how to write a good dataset description.',
  12. permissions: 'Permissions',
  13. permissionsOnlyMe: 'Only me',
  14. permissionsAllMember: 'All team members',
  15. indexMethod: 'Index Method',
  16. indexMethodHighQuality: 'High Quality',
  17. indexMethodHighQualityTip: 'Call OpenAI\'s embedding interface for processing to provide higher accuracy when users query.',
  18. indexMethodEconomy: 'Economical',
  19. indexMethodEconomyTip: 'Use offline vector engines, keyword indexes, etc. to reduce accuracy without spending tokens',
  20. embeddingModel: 'Embedding Model',
  21. embeddingModelTip: 'Change the embedded model, please go to ',
  22. embeddingModelTipLink: 'Settings',
  23. save: 'Save',
  24. },
  25. }
  26. export default translation