Skip to content

Commit

Permalink
Add location_trusted to remote diarization auth
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jul 16, 2024
1 parent f58ff36 commit bb699c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/wordcab_transcribe/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def whisper_model_compatibility_check(cls, value: str): # noqa: B902, N805
"large-v1",
"large-v2",
"large-v3",
"distil-medium.en",
"distil-large-v2",
"distil-large-v3",
]
Expand All @@ -117,7 +118,7 @@ def whisper_model_compatibility_check(cls, value: str): # noqa: B902, N805
raise ValueError(
"The whisper models must be one of `tiny`, `tiny.en`, `base`,"
" `base.en`, `small`, `small.en`, `medium`, `medium.en`, `large`,"
" `large-v1`, `large-v2`, `large-v3`, `distil-large-v2`, or"
" `large-v1`, `large-v2`, `large-v3`, `distil-medium.en`, `distil-large-v2`, or"
" `distil-large-v3`."
)

Expand Down

0 comments on commit bb699c3

Please sign in to comment.