(self, request: Request, workspace_id: str, application_id: str)
| 430 | CompareConstants.AND), |
| 431 | RoleConstants.WORKSPACE_MANAGE.get_workspace_role()) |
| 432 | def post(self, request: Request, workspace_id: str, application_id: str): |
| 433 | return result.success( |
| 434 | ApplicationOperateSerializer( |
| 435 | data={'application_id': application_id, 'workspace_id': workspace_id, 'user_id': request.user.id}) |
| 436 | .speech_to_text({'file': request.FILES.get('file')})) |
| 437 | |
| 438 | |
| 439 | class TextToSpeech(APIView): |
nothing calls this directly
no test coverage detected