You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dataset-settings.ts 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. const translation = {
  2. title: 'Knowledge settings',
  3. desc: 'Here you can modify the properties and retrieval settings of this Knowledge.',
  4. form: {
  5. name: 'Knowledge Name',
  6. nameAndIcon: 'Name & Icon',
  7. namePlaceholder: 'Please enter the Knowledge name',
  8. nameError: 'Name cannot be empty',
  9. desc: 'Description',
  10. 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.',
  11. 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.',
  12. helpText: 'Learn how to write a good dataset description.',
  13. descWrite: 'Learn how to write a good Knowledge description.',
  14. permissions: 'Permissions',
  15. permissionsOnlyMe: 'Only me',
  16. permissionsAllMember: 'All team members',
  17. permissionsInvitedMembers: 'Partial team members',
  18. me: '(You)',
  19. onSearchResults: 'No members match your search query.\nTry your search again.',
  20. chunkStructure: {
  21. title: 'Chunk Structure',
  22. learnMore: 'Learn more',
  23. description: ' about Chunk Structure.',
  24. },
  25. indexMethod: 'Index Method',
  26. indexMethodHighQuality: 'High Quality',
  27. indexMethodHighQualityTip: 'Calling the embedding model to process documents for more precise retrieval helps LLM generate high-quality answers.',
  28. upgradeHighQualityTip: 'Once upgrading to High Quality mode, reverting to Economical mode is not available',
  29. indexMethodEconomy: 'Economical',
  30. indexMethodEconomyTip: 'Using {{count}} keywords per chunk for retrieval, no tokens are consumed at the expense of reduced retrieval accuracy.',
  31. numberOfKeywords: 'Number of Keywords',
  32. embeddingModel: 'Embedding Model',
  33. embeddingModelTip: 'Change the embedded model, please go to ',
  34. embeddingModelTipLink: 'Settings',
  35. retrievalSetting: {
  36. title: 'Retrieval Setting',
  37. method: 'Retrieval Method',
  38. learnMore: 'Learn more',
  39. description: ' about retrieval method.',
  40. longDescription: ' about retrieval method, you can change this at any time in the Knowledge settings.',
  41. },
  42. externalKnowledgeAPI: 'External Knowledge API',
  43. externalKnowledgeID: 'External Knowledge ID',
  44. retrievalSettings: 'Retrieval Settings',
  45. save: 'Save',
  46. indexMethodChangeToEconomyDisabledTip: 'Not available for downgrading from HQ to ECO',
  47. searchModel: 'Search model',
  48. },
  49. }
  50. export default translation