- 固定 rag.engine 与 Milvus 配置,补齐启动期检索基础设施校验 - 支持调用方配置 retrievalMode,并统一知识库检索入口与结果来源展示 - 修正关键词检索 knowledgeId 过滤、混合检索评分归一化与本地 ES 默认配置
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"title": "Knowledge Retrieval Configuration",
|
|
"docRecallMaxNum": {
|
|
"label": "Max Recall Documents",
|
|
"tooltip": "Maximum number of documents returned during retrieval. Larger values recall more comprehensively but slower."
|
|
},
|
|
"simThreshold": {
|
|
"label": "Minimum Similarity",
|
|
"tooltip": "Higher values mean stricter filtering, only returning documents with higher similarity (range: 0-1, recommended: 0.6-0.8)."
|
|
},
|
|
"button": {
|
|
"save": "Save Configuration"
|
|
},
|
|
"engineHint": "The keyword search engine is controlled by platform-level configuration and is no longer configured per knowledge base.",
|
|
"message": {
|
|
"saveSuccess": "Configuration saved successfully",
|
|
"saveFailed": "Configuration saved failed"
|
|
},
|
|
"placeholder": {
|
|
"count": "1-50"
|
|
},
|
|
"switch": {
|
|
"on": "On",
|
|
"off": "Off"
|
|
},
|
|
"unit": {
|
|
"count": "items"
|
|
},
|
|
"searchEngineType": {
|
|
"label": "Search Engine Type",
|
|
"placeholder": "Please select search engine type",
|
|
"tooltip": "Select the engine type for document retrieval: Keyword search (fast)",
|
|
"vector": "Vector Retrieval",
|
|
"hybrid": "Hybrid Retrieval",
|
|
"keyword": "Keyword Retrieval"
|
|
},
|
|
"searchEngineEnable": {
|
|
"label": "Enable Search Engine",
|
|
"tooltip": "Enable to use the search engine for document retrieval."
|
|
}
|
|
}
|