Skip to content

Commit 37c14ab

Browse files
committed
add rev
1 parent b1456b9 commit 37c14ab

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to `slashml-python-client` aka `slashml` will be documented in this file.
33
This 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

examples/speech_to_text_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Replace `API_KEY` with your SlasML API token. This example still runs without
44
# the API token but usage will be limited
55
API_KEY = None
6-
service_provider = SpeechToText.ServiceProvider.GOOGLE
6+
service_provider = SpeechToText.ServiceProvider.REV
77
audio_filepath = "test.mp3"
88

99
# Find all the service providers that we support by running the choices() method

slashml/speech_to_text.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)