Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions api-reference/server/services/tts/deepgram.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,12 @@ Before using `DeepgramSageMakerTTSService`, you need:
Audio encoding format. Must be one of: `"linear16"`, `"mulaw"`, `"alaw"`.
</ParamField>

<ParamField path="mip_opt_out" type="bool | None" default="None">
Opt out of the Deepgram Model Improvement Program. See
[https://dpgr.am/deepgram-mip](https://dpgr.am/deepgram-mip) for pricing
impacts before setting to `True`.
</ParamField>

#### DeepgramTTSService Settings

Runtime-configurable settings passed via the `settings` constructor argument using `DeepgramTTSService.Settings(...)`. These can be updated mid-conversation with `TTSUpdateSettingsFrame`. See [Service Settings](/pipecat/fundamentals/service-settings) for details.
Expand Down Expand Up @@ -163,6 +169,12 @@ Runtime-configurable settings passed via the `settings` constructor argument usi
Audio encoding format.
</ParamField>

<ParamField path="mip_opt_out" type="bool | None" default="None">
Opt out of the Deepgram Model Improvement Program. See
[https://dpgr.am/deepgram-mip](https://dpgr.am/deepgram-mip) for pricing
impacts before setting to `True`.
</ParamField>

#### DeepgramHttpTTSService Settings

Runtime-configurable settings passed via the `settings` constructor argument using `DeepgramHttpTTSService.Settings(...)`. These can be updated mid-conversation with `TTSUpdateSettingsFrame`. See [Service Settings](/pipecat/fundamentals/service-settings) for details.
Expand Down
Loading