File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
66
77### Added
88- Added deepgram model for SpeechToText service
9+ - Added gcp model for SpeechToText service
910
1011### Fixed
1112- Fixed a bug in examples by replacing verbs with ` submit_job `
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 .DEEPGRAM
6+ service_provider = SpeechToText .ServiceProvider .GOOGLE
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 @@ -10,6 +10,7 @@ class ServiceProvider(Enum):
1010 AWS = "aws"
1111 WHISPER = "whisper"
1212 DEEPGRAM = 'deepgram'
13+ GOOGLE = 'google'
1314
1415 @classmethod
1516 def choices (cls ):
You can’t perform that action at this time.
0 commit comments