Skip to content

Commit fda94eb

Browse files
authored
Merge pull request #954 from SpaceShaman/patch-1
Update audio.py
2 parents 7af639f + 5c396dd commit fda94eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/marvin/ai/audio.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ def transcribe(
169169
170170
This function converts audio from a file to text.
171171
"""
172-
return run_sync(transcribe_async(data=data, prompt=prompt, **model_kwargs or {}))
172+
return run_sync(
173+
transcribe_async(data=data, prompt=prompt, model_kwargs=model_kwargs or {})
174+
)
173175

174176

175177
def speech(

0 commit comments

Comments
 (0)