-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule backend
updated
26 files
+38 −0 | backend/backend/logger.py | |
+75 −4 | backend/backend/settings.py | |
+450 −3 | backend/organization/views.py | |
+7 −6 | backend/project/decorators.py | |
+320 −67 | backend/project/views.py | |
+67 −0 | backend/task/decorators.py | |
+28 −0 | backend/task/migrations/0008_alter_task_status.py | |
+11 −4 | backend/task/models.py | |
+9 −0 | backend/task/serializers.py | |
+233 −94 | backend/task/views.py | |
+5 −0 | backend/transcript/urls.py | |
+6 −1 | backend/transcript/utils/asr.py | |
+59 −23 | backend/transcript/views.py | |
+5 −0 | backend/translation/urls.py | |
+18 −6 | backend/translation/utils.py | |
+55 −11 | backend/translation/views.py | |
+32 −0 | backend/users/migrations/0006_alter_user_role.py | |
+4 −0 | backend/users/models.py | |
+40 −1 | backend/users/serializers.py | |
+84 −3 | backend/users/views.py | |
+49 −22 | backend/video/views.py | |
+182 −17 | speech-api/config.json | |
+236 −93 | speech-api/main.py | |
+153 −0 | speech-api/nemo_model_api.py | |
+246 −0 | speech-api/punctuate.py | |
+48 −11 | speech-api/support.py |
Submodule frontend
updated
68 files