From 60a83b415fd1da7773897b372e2d012d7a701900 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 29 Jun 2024 03:23:21 -0400 Subject: [PATCH] Add location_trusted to remote diarization auth --- src/wordcab_transcribe/services/asr_service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wordcab_transcribe/services/asr_service.py b/src/wordcab_transcribe/services/asr_service.py index 298b851..ef3dbec 100644 --- a/src/wordcab_transcribe/services/asr_service.py +++ b/src/wordcab_transcribe/services/asr_service.py @@ -895,6 +895,7 @@ async def remote_diarization( url=auth_url, data={"username": settings.username, "password": settings.password}, headers=headers, + location_trusted=True, ) as response: if response.status != 200: raise Exception(response.status)