refactor naming

This commit is contained in:
Philipinho
2025-09-16 16:07:27 +01:00
parent e6bb54b278
commit 510687e18e
6 changed files with 15 additions and 7 deletions

View File

@ -225,4 +225,12 @@ export class EnvironmentService {
getOpenAiModel(): string {
return this.configService.get<string>('OPENAI_MODEL');
}
isAIEnabled(): string {
return this.configService.get<string>('ENABLE_AI');
}
isAIVectorSearchEnabled(): string {
return this.configService.get<string>('AI_VECTOR_SEARCH');
}
}