You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Voice Live API provides Bring Your Own Model (BYOM) capabilities, allowing you to integrate your custom models into the voice interaction workflow. BYOM is useful for the following scenarios:
15
17
16
18
-**Fine-tuned models**: Use your custom Azure OpenAI or Azure Foundry models
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/quickstarts/voice-live-agents/resource-authentication.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ Create a new file named `.env` in the folder where you want to run the code.
11
11
In the `.env` file, add the following environment variables for authentication:
12
12
13
13
```plaintext
14
-
AZURE_VOICE_LIVE_ENDPOINT=<your_endpoint>
14
+
AZURE_VOICELIVE_ENDPOINT=<your_endpoint>
15
15
AI_FOUNDRY_PROJECT_NAME=<your_project_name>
16
16
AI_FOUNDRY_AGENT_ID=<your_agent_id>
17
-
AZURE_VOICE_LIVE_API_VERSION=2025-10-01
18
-
AZURE_VOICE_LIVE_API_KEY=<your_api_key> # Only required if using API key authentication
17
+
AZURE_VOICELIVE_API_VERSION=2025-10-01
18
+
AZURE_VOICELIVE_API_KEY=<your_api_key> # Only required if using API key authentication
19
19
```
20
20
21
21
Replace the default values with your actual project name, agent ID, API version, and API key.
@@ -24,22 +24,22 @@ Replace the default values with your actual project name, agent ID, API version,
24
24
25
25
|Variable name | Value |
26
26
|--------------------------|-------------|
27
-
|`AZURE_VOICE_LIVE_ENDPOINT`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. |
27
+
|`AZURE_VOICELIVE_ENDPOINT`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. |
28
28
|`AI_FOUNDRY_PROJECT_NAME`| The name of your Azure AI Foundry project. |
29
29
|`AI_FOUNDRY_AGENT_ID`| The ID of your Azure AI Foundry agent. |
30
-
|`AZURE_VOICE_LIVE_API_VERSION`| The API version you want to use. For example, `2025-10-01`. |
30
+
|`AZURE_VOICELIVE_API_VERSION`| The API version you want to use. For example, `2025-10-01`. |
31
31
32
32
Learn more about [keyless authentication](/azure/ai-services/authentication) and [setting environment variables](/azure/ai-services/cognitive-services-environment-variables).
33
33
34
34
#### [API key](#tab/api-key)
35
35
36
36
|Variable name | Value |
37
37
|--------------------------|-------------|
38
-
|`AZURE_VOICE_LIVE_ENDPOINT`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. |
38
+
|`AZURE_VOICELIVE_ENDPOINT`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. |
39
39
|`AI_FOUNDRY_PROJECT_NAME`| The name of your Azure AI Foundry project. |
40
40
|`AI_FOUNDRY_AGENT_ID`| The ID of your Azure AI Foundry agent. |
41
-
|`AZURE_VOICE_LIVE_API_VERSION`| The API version you want to use. For example, `2025-10-01`. |
42
-
|`AZURE_VOICE_LIVE_API_KEY`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. You can use either `KEY1` or `KEY2`.|
41
+
|`AZURE_VOICELIVE_API_VERSION`| The API version you want to use. For example, `2025-10-01`. |
42
+
|`AZURE_VOICELIVE_API_KEY`| This value can be found in the **Keys and Endpoint** section when examining your resource from the Azure portal. You can use either `KEY1` or `KEY2`.|
43
43
44
44
Learn more about [finding API keys](/azure/ai-services/cognitive-services-environment-variables) and [setting environment variables](/azure/ai-services/cognitive-services-environment-variables).
0 commit comments