This commit is contained in:
Philipinho
2025-09-30 12:20:01 +01:00
parent eda75d6818
commit 90dad04921
2 changed files with 6 additions and 3 deletions

View File

@ -229,8 +229,11 @@ export class EnvironmentService {
);
}
getOpenAiModel(): string {
return this.configService.get<string>('OPENAI_MODEL');
getOpenAiCompletionModel(): string {
return this.configService.get<string>(
'OPENAI_COMPLETION_MODEL',
'gpt-4o-mini',
);
}
isAIEnabled(): string {