Implement LoRA metadata caching for bulk selection

This commit is contained in:
Will Miao
2025-03-07 14:23:30 +08:00
parent 59716ce3c3
commit a01a336259
2 changed files with 45 additions and 7 deletions

View File

@@ -11,5 +11,7 @@ export const state = {
filters: {
baseModel: []
},
bulkMode: false
bulkMode: false,
selectedLoras: new Set(),
loraMetadataCache: new Map()
};