Skip to content

Commit

Permalink
fix: add type to AI Model createn response
Browse files Browse the repository at this point in the history
  • Loading branch information
romansharapov19 committed Sep 8, 2023
1 parent 8a14e56 commit 0617908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/ai/admin.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class AiAdminController {
@ApiOperation({ description: 'Add a new ai chat model' })
async superAdminAddAiModel(
@Body() superAdminAddAiModelDto: SuperAdminAddAiModelRequestDto
): Promise<any> {
): Promise<SuperAdminAiModelResponseDto> {
return this.adminAddChatModelUsecase.execute(superAdminAddAiModelDto);
}
}

0 comments on commit 0617908

Please sign in to comment.