Skip to content

Commit eea7384

Browse files
authored
Merge pull request #109728 from trevorbye/region-fix
Region fix
2 parents 9a21626 + b46ec20 commit eea7384

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ There are a few ways that you can initialize a [`SpeechConfig`](https://docs.mic
3232
* With a host: pass in a host address. A key or authorization token is optional.
3333
* With an authorization token: pass in an authorization token and the associated region.
3434

35-
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/cpp/cognitive-services/speech/speechconfig) is created using a key and region.
35+
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/cpp/cognitive-services/speech/speechconfig) is created using a key and region. See the [region support](https://docs.microsoft.com/azure/cognitive-services/speech-service/regions#speech-sdk) page to find your region identifier.
3636

3737
```cpp
3838
auto config = SpeechConfig::FromSubscription("YourSubscriptionKey", "YourServiceRegion");

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ There are a few ways that you can initialize a [`SpeechConfig`](https://docs.mic
3434
* With a host: pass in a host address. A key or authorization token is optional.
3535
* With an authorization token: pass in an authorization token and the associated region.
3636

37-
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/dotnet/api/microsoft.cognitiveservices.speech.speechconfig?view=azure-dotnet) is created using a key and region.
37+
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/dotnet/api/microsoft.cognitiveservices.speech.speechconfig?view=azure-dotnet) is created using a key and region. See the [region support](https://docs.microsoft.com/azure/cognitive-services/speech-service/regions#speech-sdk) page to find your region identifier.
3838

3939
```csharp
4040
var speechConfig = SpeechConfig.FromSubscription("YourSubscriptionKey", "YourServiceRegion");

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ There are a few ways that you can initialize a [`SpeechConfig`](https://docs.mic
3131
* With a host: pass in a host address. A key or authorization token is optional.
3232
* With an authorization token: pass in an authorization token and the associated region.
3333

34-
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechconfig?view=azure-java-stable) is created using a key and region.
34+
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechconfig?view=azure-java-stable) is created using a key and region. See the [region support](https://docs.microsoft.com/azure/cognitive-services/speech-service/regions#speech-sdk) page to find your region identifier.
3535

3636
```java
3737
SpeechConfig config = SpeechConfig.fromSubscription("YourSubscriptionKey", "YourServiceRegion");

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ There are a few ways that you can initialize a [`SpeechConfig`](https://docs.mic
4646
* With a host: pass in a host address. A key or authorization token is optional.
4747
* With an authorization token: pass in an authorization token and the associated region.
4848

49-
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.speechconfig?view=azure-python) is created using a key and region.
49+
Let's take a look at how a [`SpeechConfig`](https://docs.microsoft.com/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.speechconfig?view=azure-python) is created using a key and region. See the [region support](https://docs.microsoft.com/azure/cognitive-services/speech-service/regions#speech-sdk) page to find your region identifier.
5050

5151
```Python
5252
speech_key, service_region = "YourSubscriptionKey", "YourServiceRegion"

0 commit comments

Comments
 (0)