Skip to content

Commit fa40dbd

Browse files
Merge branch 'main' into saved-filters-2
2 parents dfd0353 + eac266b commit fa40dbd

8 files changed

Lines changed: 530 additions & 2199 deletions

File tree

backend/src/entities/ai/ai.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ import { CreateThreadWithAIAssistantUseCase } from './use-cases/create-thread-wi
1010
import { DeleteThreadWithAIAssistantUseCase } from './use-cases/delete-thread-with-ai-assistant.use.case.js';
1111
import { FindAllMessagesInAiThreadUseCase } from './use-cases/find-all-messages-in-ai-thread.use.case.js';
1212
import { FindAllUserThreadsWithAssistantUseCase } from './use-cases/find-all-user-threads-with-assistant.use.case.js';
13-
import { RequestInfoFromTableWithAIUseCaseV3 } from './use-cases/request-info-from-table-with-ai-v3.use.case.js';
1413
import { RequestInfoFromTableWithAIUseCase } from './use-cases/request-info-from-table-with-ai.use.case.js';
1514
import { UserAIRequestsControllerV2 } from './user-ai-requests-v2.controller.js';
1615
import { UserAIRequestsController } from './user-ai-requests.controller.js';
1716
import { UserAIThreadsController } from './user-ai-threads.controller.js';
17+
import { RequestInfoFromTableWithAIUseCaseV4 } from './use-cases/request-info-from-table-with-ai-v4.use.case.js';
1818

1919
@Module({
2020
imports: [TypeOrmModule.forFeature([UserEntity, LogOutEntity])],
@@ -29,7 +29,7 @@ import { UserAIThreadsController } from './user-ai-threads.controller.js';
2929
},
3030
{
3131
provide: UseCaseType.REQUEST_INFO_FROM_TABLE_WITH_AI_V2,
32-
useClass: RequestInfoFromTableWithAIUseCaseV3,
32+
useClass: RequestInfoFromTableWithAIUseCaseV4,
3333
},
3434
{
3535
provide: UseCaseType.CREATE_THREAD_WITH_AI_ASSISTANT,

0 commit comments

Comments
 (0)