dataset.ts 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. const translation = {
  2. knowledge: '知識庫',
  3. documentCount: ' 文件',
  4. wordCount: ' 千字元',
  5. appCount: ' 關聯應用',
  6. createDataset: '建立知識庫',
  7. createDatasetIntro: '匯入您自己的文字資料或透過 Webhook 實時寫入資料以增強 LLM 的上下文。',
  8. deleteDatasetConfirmTitle: '要刪除知識庫嗎?',
  9. deleteDatasetConfirmContent:
  10. '刪除知識庫是不可逆的。使用者將無法再訪問您的知識庫,所有的提示配置和日誌將被永久刪除。',
  11. datasetDeleted: '知識庫已刪除',
  12. datasetDeleteFailed: '刪除知識庫失敗',
  13. didYouKnow: '你知道嗎?',
  14. intro1: '知識庫可以被整合到 Dify 應用中',
  15. intro2: '作為上下文',
  16. intro3: ',',
  17. intro4: '或可以',
  18. intro5: '建立',
  19. intro6: '為獨立的 ChatGPT 外掛釋出使用',
  20. unavailable: '不可用',
  21. unavailableTip: '由於 embedding 模型不可用,需要配置預設 embedding 模型',
  22. datasets: '知識庫',
  23. datasetsApi: 'API',
  24. retrieval: {
  25. semantic_search: {
  26. title: '向量檢索',
  27. description: '透過生成查詢嵌入並查詢與其向量表示最相似的文字分段',
  28. },
  29. full_text_search: {
  30. title: '全文檢索',
  31. description: '索引文件中的所有詞彙,從而允許使用者查詢任意詞彙,並返回包含這些詞彙的文字片段',
  32. },
  33. hybrid_search: {
  34. title: '混合檢索',
  35. description: '同時執行全文檢索和向量檢索,並應用重排序步驟,從兩類查詢結果中選擇匹配使用者問題的最佳結果,需配置 Rerank 模型 API',
  36. recommend: '推薦',
  37. },
  38. invertedIndex: {
  39. title: '倒排索引',
  40. description: '倒排索引是一種用於高效檢索的結構。按術語組織,每個術語指向包含它的文件或網頁',
  41. },
  42. change: '更改',
  43. changeRetrievalMethod: '更改檢索方法',
  44. },
  45. docsFailedNotice: '文件無法被索引',
  46. retry: '重試',
  47. }
  48. export default translation