|
27 | 27 | "settings": { |
28 | 28 | "rag": { |
29 | 29 | "title": "Knowledge Base", |
30 | | - "desc": "Here, you can configure knowledge base related settings, knowledge base based on RAG technology, through embedding models to convert text into vectors, then through vector search to achieve intelligent search and intelligent answers." |
| 30 | + "desc": "Here, you can configure knowledge base related settings, knowledge base based on RAG technology, through embedding models to convert text into vectors, then through vector search to achieve intelligent search and intelligent answers.", |
| 31 | + "settingsTitle": "Parameter Settings", |
| 32 | + "settingsDesc": "By adjusting parameters, you can more precisely control the retrieval effect of the knowledge base.", |
| 33 | + "deleteVectorConfirm": "Are you sure you want to clear the knowledge base?", |
| 34 | + "deleteVectorSuccess": "Knowledge base cleared successfully", |
| 35 | + "enable": "Enable knowledge base search", |
| 36 | + "enableDesc": "Enabling it will make AI search your notes when answering questions, providing more accurate answers.", |
| 37 | + "chunkSize": "Chunk size", |
| 38 | + "chunkSizeDesc": "The maximum number of characters for text chunking. Larger chunks may contain more context, but will increase vector calculation complexity.", |
| 39 | + "chunkOverlap": "Chunk overlap", |
| 40 | + "chunkOverlapDesc": "The number of overlapping characters between text chunks. Larger overlaps can maintain context continuity.", |
| 41 | + "resultCount": "Result count", |
| 42 | + "resultCountDesc": "The number of related documents returned when searching. The more documents, the more information provided, but may also introduce noise.", |
| 43 | + "similarityThreshold": "Similarity threshold", |
| 44 | + "similarityThresholdDesc": "The minimum similarity threshold between documents and queries. Only documents exceeding this threshold will be returned. The value range is 0.0-1.0, the higher the threshold, the stricter the requirement.", |
| 45 | + "resetToDefaults": "Reset to defaults", |
| 46 | + "deleteVector": "Clear knowledge base" |
31 | 47 | }, |
32 | 48 | "editor": { |
33 | 49 | "title": "Markdown Editor", |
|
0 commit comments