Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assemblyai/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.45.0"
__version__ = "0.45.1"
8 changes: 8 additions & 0 deletions assemblyai/transcriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,14 @@ def speech_model(self) -> Optional[str]:

return self._impl.transcript.speech_model

@property
def speech_model_used(self) -> Optional[str]:
"The actual speech model that was used for the transcription"
if not self._impl.transcript:
raise ValueError("The internal Transcript object is None.")

return self._impl.transcript.speech_model_used

@property
def text(self) -> Optional[str]:
"The text transcription of your media file"
Expand Down