We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b3b3a commit a53d113Copy full SHA for a53d113
assemblyai/__version__.py
@@ -1 +1 @@
1
-__version__ = "0.45.0"
+__version__ = "0.45.1"
assemblyai/transcriber.py
@@ -368,6 +368,14 @@ def speech_model(self) -> Optional[str]:
368
369
return self._impl.transcript.speech_model
370
371
+ @property
372
+ def speech_model_used(self) -> Optional[str]:
373
+ "The actual speech model that was used for the transcription"
374
+ if not self._impl.transcript:
375
+ raise ValueError("The internal Transcript object is None.")
376
+
377
+ return self._impl.transcript.speech_model_used
378
379
@property
380
def text(self) -> Optional[str]:
381
"The text transcription of your media file"
0 commit comments