fix: typo in asr options (#1902)

fix typo

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi 2025-07-07 08:59:14 +02:00 committed by GitHub
parent f4a1c06937
commit dd8fde7f19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,7 @@ WHISPER_TINY = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)
@ -33,7 +33,7 @@ WHISPER_SMALL = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)
@ -44,7 +44,7 @@ WHISPER_MEDIUM = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)
@ -55,7 +55,7 @@ WHISPER_BASE = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)
@ -66,7 +66,7 @@ WHISPER_LARGE = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)
@ -77,7 +77,7 @@ WHISPER_TURBO = InlineAsrNativeWhisperOptions(
verbose=True,
timestamps=True,
word_timestamps=True,
temperatue=0.0,
temperature=0.0,
max_new_tokens=256,
max_time_chunk=30.0,
)