dataset.ts 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. const translation = {
  2. knowledge: 'Knowledge',
  3. documentCount: ' docs',
  4. wordCount: ' k words',
  5. appCount: ' linked apps',
  6. createDataset: 'Create Knowledge',
  7. createDatasetIntro: 'Import your own text data or write data in real-time via Webhook for LLM context enhancement.',
  8. deleteDatasetConfirmTitle: 'Delete this Knowledge?',
  9. deleteDatasetConfirmContent:
  10. 'Deleting the Knowledge is irreversible. Users will no longer be able to access your Knowledge, and all prompt configurations and logs will be permanently deleted.',
  11. datasetUsedByApp: 'The knowledge is being used by some apps. Apps will no longer be able to use this Knowledge, and all prompt configurations and logs will be permanently deleted.',
  12. datasetDeleted: 'Knowledge deleted',
  13. datasetDeleteFailed: 'Failed to delete Knowledge',
  14. didYouKnow: 'Did you know?',
  15. intro1: 'The Knowledge can be integrated into the Dify application ',
  16. intro2: 'as a context',
  17. intro3: ',',
  18. intro4: 'or it ',
  19. intro5: 'can be created',
  20. intro6: ' as a standalone ChatGPT index plug-in to publish',
  21. unavailable: 'Unavailable',
  22. unavailableTip: 'Embedding model is not available, the default embedding model needs to be configured',
  23. datasets: 'KNOWLEDGE',
  24. datasetsApi: 'API ACCESS',
  25. retrieval: {
  26. semantic_search: {
  27. title: 'Vector Search',
  28. description: 'Generate query embeddings and search for the text chunk most similar to its vector representation.',
  29. },
  30. full_text_search: {
  31. title: 'Full-Text Search',
  32. description: 'Index all terms in the document, allowing users to search any term and retrieve relevant text chunk containing those terms.',
  33. },
  34. hybrid_search: {
  35. title: 'Hybrid Search',
  36. description: 'Execute full-text search and vector searches simultaneously, re-rank to select the best match for the user\'s query. Configuration of the Rerank model APIs necessary.',
  37. recommend: 'Recommend',
  38. },
  39. invertedIndex: {
  40. title: 'Inverted Index',
  41. description: 'Inverted Index is a structure used for efficient retrieval. Organized by terms, each term points to documents or web pages containing it.',
  42. },
  43. change: 'Change',
  44. changeRetrievalMethod: 'Change retrieval method',
  45. },
  46. docsFailedNotice: 'documents failed to be indexed',
  47. retry: 'Retry',
  48. }
  49. export default translation