dataset-settings.ts 1.7 KB

123456789101112131415161718192021222324252627282930313233
  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. 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. retrievalSetting: {
  24. title: 'Retrieval setting',
  25. learnMore: 'Learn more',
  26. description: ' about retrieval method.',
  27. longDescription: ' about retrieval method, you can change this at any time in the Knowledge settings.',
  28. },
  29. save: 'Save',
  30. },
  31. }
  32. export default translation