测试版本,添加了模拟好友并优化了本地缓存

This commit is contained in:
cc
2026-01-12 23:42:09 +08:00
parent 756ee03aa0
commit bd94ba7b1a
19 changed files with 4699 additions and 272 deletions

View File

@@ -19,6 +19,7 @@ interface ConfigSchema {
themeId: string
language: string
logEnabled: boolean
llmModelPath: string
}
export class ConfigService {
@@ -40,7 +41,8 @@ export class ConfigService {
theme: 'system',
themeId: 'cloud-dancer',
language: 'zh-CN',
logEnabled: false
logEnabled: false,
llmModelPath: ''
}
})
}