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
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/includes/containers-speech-config-http.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ Speech containers provide websocket-based query endpoint APIs that are accessed
14
14
> When you use the Speech service with containers, be sure to use host authentication. If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
15
15
16
16
::: zone pivot="programming-language-csharp"
17
-
Change from using this Azure-cloud initialization call:
17
+
Instead of using this Azure-cloud initialization config:
18
18
19
19
```csharp
20
20
varconfig=SpeechConfig.FromSubscription(...);
21
21
```
22
22
23
-
To using this call with the container [host](/dotnet/api/microsoft.cognitiveservices.speech.speechconfig.fromhost):
23
+
Use this config with the container [host](/dotnet/api/microsoft.cognitiveservices.speech.speechconfig.fromhost):
24
24
25
25
```csharp
26
26
varconfig=SpeechConfig.FromHost(
@@ -29,98 +29,98 @@ var config = SpeechConfig.FromHost(
29
29
::: zone-end
30
30
31
31
::: zone pivot="programming-language-cpp"
32
-
Change from using this Azure-cloud initialization call:
32
+
Instead of using this Azure-cloud initialization config:
33
33
34
34
```cpp
35
35
auto speechConfig = SpeechConfig::FromSubscription(...);
36
36
```
37
37
38
-
To using this call with the container [host](/cpp/cognitive-services/speech/speechconfig#fromhost):
38
+
Use this config with the container [host](/cpp/cognitive-services/speech/speechconfig#fromhost):
39
39
40
40
```cpp
41
41
auto speechConfig = SpeechConfig::FromHost("http://localhost:5000");
42
42
```
43
43
::: zone-end
44
44
45
45
::: zone pivot="programming-language-go"
46
-
Change from using this Azure-cloud initialization call:
46
+
Instead of using this Azure-cloud initialization config:
To using this call with the container [host](/java/api/com.microsoft.cognitiveservices.speech.speechconfig#com-microsoft-cognitiveservices-speech-speechconfig-fromhost(java-net-uri)):
66
+
Use this config with the container [host](/java/api/com.microsoft.cognitiveservices.speech.speechconfig#com-microsoft-cognitiveservices-speech-speechconfig-fromhost(java-net-uri)):
To using this call with the container [host](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechconfig#microsoft-cognitiveservices-speech-sdk-speechconfig-fromhost):
80
+
Use this config with the container [host](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechconfig#microsoft-cognitiveservices-speech-sdk-speechconfig-fromhost):
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/speech-container-cstt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ Obtain the **Model ID** to use as the argument to the `ModelId` parameter of the
89
89

90
90
91
91
92
-
# [Base model ID](#tab/custom-model)
92
+
# [Base model ID](#tab/base-model)
93
93
94
94
You can get the available base model information by using option `BaseModelLocale={LOCALE}`. This option gives you a list of available base models on that locale under your billing account.
0 commit comments