diff --git a/backend/src/entities/ai/use-cases/request-info-from-table-with-ai-v4.use.case.ts b/backend/src/entities/ai/use-cases/request-info-from-table-with-ai-v4.use.case.ts index 7431e0818..96b00c3fd 100644 --- a/backend/src/entities/ai/use-cases/request-info-from-table-with-ai-v4.use.case.ts +++ b/backend/src/entities/ai/use-cases/request-info-from-table-with-ai-v4.use.case.ts @@ -410,11 +410,12 @@ export class RequestInfoFromTableWithAIUseCaseV4 return true; } - private isEmptyContent(content: string): boolean { - if (content === ' ') { - return false; - } - return !content || content.trim() === ''; + private isEmptyContent(_content: string): boolean { + return false; + // if (content === ' ') { + // return false; + // } + // return !content || content.trim() === ''; } private setupResponseHeaders(response: any): void {