Optimize the search view component, add workspace statistics and RAG vector initialization features, update internationalization support, improve user interaction prompts, enhance log output, and ensure better user experience and code readability.

This commit is contained in:
duanfuxiang
2025-07-07 09:47:37 +08:00
parent 51f8620815
commit 3db334c6e8
10 changed files with 1532 additions and 39 deletions

View File

@@ -239,6 +239,8 @@ export default {
autocompleteModelDescription: 'Model used for code and text autocompletion, providing intelligent writing suggestions',
embeddingModel: 'Embedding model:',
embeddingModelDescription: 'Model used for document vectorization and semantic search, supporting RAG functionality',
insightModel: 'Insight model:',
insightModelDescription: 'Model used for generating intelligent insights and analysis, providing deep content understanding',
},
// Model Provider Settings
@@ -249,6 +251,7 @@ export default {
oneClickConfig: 'One-Click Config',
oneClickConfigTooltip: 'Automatically configure models to recommended models from providers with API keys set',
chatModelConfigured: 'Chat model configured automatically: {provider}/{model}',
insightModelConfigured: 'Insight model configured automatically: {provider}/{model}',
autocompleteModelConfigured: 'Autocomplete model configured automatically: {provider}/{model}',
embeddingModelConfigured: 'Embedding model configured automatically: {provider}/{model}',
provider: 'Provider',

View File

@@ -241,6 +241,8 @@ export default {
autocompleteModelDescription: '用于代码和文本自动补全的模型,提供智能写作建议',
embeddingModel: '嵌入模型:',
embeddingModelDescription: '用于文档向量化和语义搜索的模型,支持 RAG 功能',
insightModel: '洞察模型:',
insightModelDescription: '用于生成智能洞察和分析的模型,提供深度内容理解',
},
// 模型提供商设置
@@ -251,6 +253,7 @@ export default {
oneClickConfig: '一键配置',
oneClickConfigTooltip: '自动配置模型为已设置 API Key 的提供商的推荐模型',
chatModelConfigured: '已自动配置聊天模型:{provider}/{model}',
insightModelConfigured: '已自动配置洞察模型:{provider}/{model}',
autocompleteModelConfigured: '已自动配置自动补全模型:{provider}/{model}',
embeddingModelConfigured: '已自动配置嵌入模型:{provider}/{model}',
provider: '提供商',