dataset.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. datasetDeleted: 'Knowledge deleted',
  12. datasetDeleteFailed: 'Failed to delete Knowledge',
  13. didYouKnow: 'Did you know?',
  14. intro1: 'The Knowledge can be integrated into the Dify application ',
  15. intro2: 'as a context',
  16. intro3: ',',
  17. intro4: 'or it ',
  18. intro5: 'can be created',
  19. intro6: ' as a standalone ChatGPT index plug-in to publish',
  20. unavailable: 'Unavailable',
  21. unavailableTip: 'Embedding model is not available, the default embedding model needs to be configured',
  22. datasets: 'KNOWLEDGE',
  23. datasetsApi: 'API',
  24. retrieval: {
  25. semantic_search: {
  26. title: 'Vector Search',
  27. description: 'Generate query embeddings and search for the text chunk most similar to its vector representation.',
  28. },
  29. full_text_search: {
  30. title: 'Full-Text Search',
  31. description: 'Index all terms in the document, allowing users to search any term and retrieve relevant text chunk containing those terms.',
  32. },
  33. hybrid_search: {
  34. title: 'Hybrid Search',
  35. 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 APIis necessary.',
  36. recommend: 'Recommend',
  37. },
  38. invertedIndex: {
  39. title: 'Inverted Index',
  40. description: 'Inverted Index is a structure used for efficient retrieval. Organized by terms, each term points to documents or web pages containing it.',
  41. },
  42. change: 'Change',
  43. changeRetrievalMethod: 'Change retrieval method',
  44. },
  45. }
  46. export default translation