feat: n to 1 retrieval legacy (#6554)

This commit is contained in:
zxhlyh
2024-07-24 12:50:48 +08:00
committed by GitHub
parent e4bb943fe5
commit 6fe9aa69cc
35 changed files with 1329 additions and 249 deletions

View File

@@ -45,6 +45,29 @@ const translation = {
},
docsFailedNotice: 'documents failed to be indexed',
retry: 'Retry',
indexingTechnique: {
high_quality: 'HQ',
economy: 'ECO',
},
indexingMethod: {
semantic_search: 'VECTOR',
full_text_search: 'FULL TEXT',
hybrid_search: 'HYBRID',
},
mixtureHighQualityAndEconomicTip: 'The Rerank model is required for mixture of high quality and economical knowledge bases.',
inconsistentEmbeddingModelTip: 'The Rerank model is required if the Embedding models of the selected knowledge bases are inconsistent.',
retrievalSettings: 'Retrieval Setting',
rerankSettings: 'Rerank Setting',
weightedScore: {
title: 'Weighted Score',
description: 'By adjusting the weights assigned this rerank strategy determines whether to prioritize semantic or keyword matching.',
semanticFirst: 'Semantic first',
keywordFirst: 'Keyword first',
customized: 'Customized',
semantic: 'Semantic',
keyword: 'Keyword',
},
nTo1RetrievalLegacy: 'According to product planning, N-to-1 retrieval will be officially deprecated in September. Until then you can still use it normally.',
}
export default translation