Integrate semantic cache with ChromaDB URL

This commit is contained in:
2026-05-07 21:34:19 +02:00
parent b37aaeb4d4
commit 96d7323377
9 changed files with 223 additions and 63 deletions
+7
View File
@@ -32,6 +32,13 @@ const mockSettings: PluginSettings = {
vaultSearchLimit: 3,
maxMessageHistory: 50,
lastIndexTime: 0,
cacheConfig: {
enabled: false,
similarityThreshold: 0.9,
collectionName: 'test-cache',
embeddingModel: 'nomic-embed-text',
chromaUrl: 'http://localhost:8000',
},
};
describe('ChatView', () => {