mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
Fix FileSystemService instantiation in RegisterDependencies function
This commit is contained in:
parent
523a95f3d5
commit
3a6ac876c2
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ export function RegisterDependencies(plugin: DmsAssistantPlugin) {
|
|||
RegisterSingleton(Services.DmsAssistantPlugin, plugin);
|
||||
RegisterSingleton(Services.OdbCache, new OdbCache());
|
||||
RegisterSingleton(Services.ModalService, new ModalService())
|
||||
RegisterSingleton(Services.FileSystemService, new FileSystemService(plugin));
|
||||
RegisterSingleton(Services.FileSystemService, new FileSystemService());
|
||||
RegisterSingleton(Services.ConversationFileSystemService, new ConversationFileSystemService());
|
||||
|
||||
RegisterSingleton<IPrompt>(Services.IPrompt, new AIPrompt());
|
||||
|
|
|
|||
Loading…
Reference in a new issue