diff --git a/frontend/services/application/tasks/text.classification.service.ts b/frontend/services/application/tasks/text.classification.service.ts index 4bb40396..56381b8b 100644 --- a/frontend/services/application/tasks/text.classification.service.ts +++ b/frontend/services/application/tasks/text.classification.service.ts @@ -34,4 +34,8 @@ export class TextClassificationApplicationService { public async clear(projectId: string, docId: number): Promise { await this.repository.clear(projectId, docId) } + + public async autoLabel(projectId: string, docId: number): Promise { + await this.repository.autoLabel(projectId, docId) + } }