deepgram: use the new nova-3 model as default
This commit is contained in:
10
CHANGELOG.md
10
CHANGELOG.md
@@ -13,6 +13,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
- Added `exponential_backoff_time()` to `utils.network` module.
|
- Added `exponential_backoff_time()` to `utils.network` module.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- `DeepgramSTTService` now uses the new `nova-3` model by default. If you want
|
||||||
|
to use the previous model you can pass `LiveOptions(model="nova-2-general")`.
|
||||||
|
(see https://deepgram.com/learn/introducing-nova-3-speech-to-text-api)
|
||||||
|
|
||||||
|
```python
|
||||||
|
stt = DeepgramSTTService(..., live_options=LiveOptions(model="nova-2-general"))
|
||||||
|
```
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an issue that would cause `DeepgramSTTService` to stop working after an
|
- Fixed an issue that would cause `DeepgramSTTService` to stop working after an
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ class DeepgramSTTService(STTService):
|
|||||||
default_options = LiveOptions(
|
default_options = LiveOptions(
|
||||||
encoding="linear16",
|
encoding="linear16",
|
||||||
language=Language.EN,
|
language=Language.EN,
|
||||||
model="nova-2-general",
|
model="nova-3-general",
|
||||||
channels=1,
|
channels=1,
|
||||||
interim_results=True,
|
interim_results=True,
|
||||||
smart_format=True,
|
smart_format=True,
|
||||||
|
|||||||
Reference in New Issue
Block a user