Skip to content

feat: Add New Azure STT/TTS Variables #526

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
24 changes: 23 additions & 1 deletion docs/getting-started/env-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1917,7 +1917,7 @@ Using a remote Playwright browser via `PLAYWRIGHT_WS_URL` can be beneficial for:
#### `AUDIO_STT_AZURE_REGION`

- Type: `str`
- Default: `None`
- Default: `eastus`
- Description: Specifies the Azure region to use for Speech-to-Text.
- Persistence: This environment variable is a `PersistentConfig` variable.

Expand All @@ -1928,6 +1928,20 @@ Using a remote Playwright browser via `PLAYWRIGHT_WS_URL` can be beneficial for:
- Description: Specifies the locales to use for Azure Speech-to-Text.
- Persistence: This environment variable is a `PersistentConfig` variable.

#### `AUDIO_STT_AZURE_BASE_URL`

- Type: `str`
- Default: `https://{region}.tts.speech.microsoft.com`
- Description: Specifies the Azure endpoint to use for Speech-to-Text.
- Persistence: This environment variable is a `PersistentConfig` variable.

#### `AUDIO_STT_AZURE_MAX_SPEAKERS`

- Type: `str`
- Default: `3`
- Description: Specifies the maximum speakers to attempt to recognize during transcription.
- Persistence: This environment variable is a `PersistentConfig` variable.

### Speech-to-Text (Deepgram)

#### `DEEPGRAM_API_KEY`
Expand Down Expand Up @@ -1983,6 +1997,7 @@ Using a remote Playwright browser via `PLAYWRIGHT_WS_URL` can be beneficial for:
#### `AUDIO_TTS_AZURE_SPEECH_REGION`

- Type: `str`
- Default: `eastus`
- Description: Sets the region for Azure Text to Speech.
- Persistence: This environment variable is a `PersistentConfig` variable.

Expand All @@ -1992,6 +2007,13 @@ Using a remote Playwright browser via `PLAYWRIGHT_WS_URL` can be beneficial for:
- Description: Sets the output format for Azure Text to Speech.
- Persistence: This environment variable is a `PersistentConfig` variable.

#### `AUDIO_TTS_AZURE_SPEECH_BASE_URL`

- Type: `str`
- Default: `https://{region}.api.cognitive.microsoft.com`
- Description: Specifies the Azure endpoint to use for Azure Text to Speech.
- Persistence: This environment variable is a `PersistentConfig` variable.

### OpenAI Text-to-Speech

#### `AUDIO_TTS_OPENAI_API_BASE_URL`
Expand Down