fix: skip pgvector table check when enabling AI search on turbopuffer (#2416)

This commit is contained in:
Philip Okugbe
2026-08-22 13:20:35 +01:00
committed by GitHub
parent e14f499f3d
commit 549cf7c005
@@ -396,7 +396,10 @@ export class WorkspaceService {
}
}
if (updateWorkspaceDto.aiSearch) {
if (
updateWorkspaceDto.aiSearch &&
this.environmentService.getAiVectorDriver() !== 'turbopuffer'
) {
const tableExists = await isPageEmbeddingsTableExists(this.db);
if (!tableExists) {
throw new BadRequestException(