File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 22All notable changes to ` slashml-python-client ` aka ` slashml ` will be documented in this file.
33This project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
44
5+ ## 0.1.1 - 2023-05-13
6+
7+ ### Added
8+ - Added rev model for SpeechToText service
9+
510## 0.1.0 - 2023-05-13
611
712### Added
Original file line number Diff line number Diff line change 33# Replace `API_KEY` with your SlasML API token. This example still runs without
44# the API token but usage will be limited
55API_KEY = None
6- service_provider = SpeechToText .ServiceProvider .GOOGLE
6+ service_provider = SpeechToText .ServiceProvider .REV
77audio_filepath = "test.mp3"
88
99# Find all the service providers that we support by running the choices() method
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ class ServiceProvider(Enum):
1111 WHISPER = "whisper"
1212 DEEPGRAM = 'deepgram'
1313 GOOGLE = 'google'
14+ REV = 'rev'
1415
1516 @classmethod
1617 def choices (cls ):
You can’t perform that action at this time.
0 commit comments