Merge branch 'main' into chat

This commit is contained in:
Philipinho
2026-04-07 10:38:12 +01:00
288 changed files with 14609 additions and 5904 deletions
@@ -266,6 +266,12 @@ export class EnvironmentService {
);
}
getAiEmbeddingSupportsMrl(): boolean | undefined {
const val = this.configService.get<string>('AI_EMBEDDING_SUPPORTS_MRL');
if (val === undefined || val === null || val === '') return undefined;
return val === 'true';
}
getOpenAiApiKey(): string {
return this.configService.get<string>('OPENAI_API_KEY');
}