forked from hangshuo652/aurak
0a9588abb7
- Add pagination support to findAll (page, limit query params) - Add findByTemplateId method to service - Add GET /by-template/:templateId endpoint to controller - Service already includes CRUD for QuestionBank and QuestionBankItem
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { EmbeddingService } from './embedding.service';
|
|
|
|
@Module({
|
|
providers: [EmbeddingService],
|
|
exports: [EmbeddingService],
|
|
})
|
|
export class AiModule {}
|