dataset-settings.ts 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. 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 data set. A detailed description allows AI to access the content of the data set in a timely manner. If empty, LangGenius will use the default hit strategy.',
  11. helpText: 'Learn how to write a good dataset description.',
  12. descWrite: 'Learn how to write a good Knowledge description.',
  13. permissions: 'Permissions',
  14. permissionsOnlyMe: 'Only me',
  15. permissionsAllMember: 'All team members',
  16. permissionsInvitedMembers: 'Partial team members',
  17. me: '(You)',
  18. indexMethod: 'Index Method',
  19. indexMethodHighQuality: 'High Quality',
  20. indexMethodHighQualityTip: 'Calling the embedding model to process documents for more precise retrieval helps LLM generate high-quality answers.',
  21. upgradeHighQualityTip: 'Once upgrading to High Quality mode, reverting to Economical mode is not available',
  22. indexMethodEconomy: 'Economical',
  23. indexMethodEconomyTip: 'Using 10 keywords per chunk for retrieval, no tokens are consumed at the expense of reduced retrieval accuracy.',
  24. embeddingModel: 'Embedding Model',
  25. embeddingModelTip: 'Change the embedded model, please go to ',
  26. embeddingModelTipLink: 'Settings',
  27. retrievalSetting: {
  28. title: 'Retrieval Setting',
  29. method: 'Retrieval Method',
  30. learnMore: 'Learn more',
  31. description: ' about retrieval method.',
  32. longDescription: ' about retrieval method, you can change this at any time in the Knowledge settings.',
  33. },
  34. externalKnowledgeAPI: 'External Knowledge API',
  35. externalKnowledgeID: 'External Knowledge ID',
  36. retrievalSettings: 'Retrieval Settings',
  37. save: 'Save',
  38. indexMethodChangeToEconomyDisabledTip: 'Not available for downgrading from HQ to ECO',
  39. },
  40. }
  41. export default translation