refactor(server): add missing override

This commit is contained in:
Elian Doran
2025-05-29 13:34:42 +03:00
parent 2309863d64
commit b88f07c202
17 changed files with 54 additions and 54 deletions

View File

@@ -63,7 +63,7 @@ export class OllamaService extends BaseAIService {
this.formatter = new OllamaMessageFormatter();
}
isAvailable(): boolean {
override isAvailable(): boolean {
return super.isAvailable() && !!options.getOption('ollamaBaseUrl');
}