Skip to content

Commit c19361d

Browse files
authored
Merge pull request #634 from watson-developer-cloud/docs/update-links
docs: update deprecated docs links
2 parents 4cfa670 + 688ddc8 commit c19361d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Scripts/Services/Assistant/V1/Model/DialogNodeOutputGeneric.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,15 +198,15 @@ public class QueryTypeValue
198198
/// The text of the search query. This can be either a natural-language query or a query that uses the Discovery
199199
/// query language syntax, depending on the value of the **query_type** property. For more information, see the
200200
/// [Discovery service
201-
/// documentation](https://cloud.ibm.com/docs/discovery/query-operators.html#query-operators). Required when
201+
/// documentation](https://cloud.ibm.com/docs/discovery?topic=discovery-query-operators#query-operators). Required when
202202
/// **response_type**=`search_skill`.
203203
/// </summary>
204204
[JsonProperty("query", NullValueHandling = NullValueHandling.Ignore)]
205205
public string Query { get; set; }
206206
/// <summary>
207207
/// An optional filter that narrows the set of documents to be searched. For more information, see the
208208
/// [Discovery service documentation]([Discovery service
209-
/// documentation](https://cloud.ibm.com/docs/discovery/query-parameters.html#filter).
209+
/// documentation](`https://cloud.ibm.com/docs/discovery?topic=discovery-query-parameters#filter).
210210
/// </summary>
211211
[JsonProperty("filter", NullValueHandling = NullValueHandling.Ignore)]
212212
public string Filter { get; set; }

Scripts/Services/SpeechToText/V1/SpeechToTextServiceExtension.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,19 +220,19 @@ public float SilenceThreshold
220220
/// </summary>
221221
public string AcousticCustomizationId { get { return _acoustic_customization_id; } set { _acoustic_customization_id = value; } }
222222
/// <summary>
223-
/// Specifies the weight the service gives to words from a specified custom language model compared to those from the base model for all requests sent over the connection. Specify a value between 0.0 and 1.0; the default value is 0.3. For more information, see https://cloud.ibm.com/docs/speech-to-text/language-use.html#weight.
223+
/// Specifies the weight the service gives to words from a specified custom language model compared to those from the base model for all requests sent over the connection. Specify a value between 0.0 and 1.0; the default value is 0.3. For more information, see https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-languageUse#weight.
224224
/// </summary>
225225
public float? CustomizationWeight { get { return _customization_weight; } set { _customization_weight = value; } }
226226
/// <summary>
227-
/// If true sets `Transfer-Encoding` request header to `chunked` causing the audio to be streamed to the service. By default, audio is sent all at once as a one-shot delivery. See https://cloud.ibm.com/docs/speech-to-text/input.html#transmission.
227+
/// If true sets `Transfer-Encoding` request header to `chunked` causing the audio to be streamed to the service. By default, audio is sent all at once as a one-shot delivery. See https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-input#transmission.
228228
/// </summary>
229229
public bool StreamMultipart { get { return _streamMultipart; } set { _streamMultipart = value; } }
230230
/// <summary>
231231
/// The name of a grammar that is to be used with the recognition request. If you specify a grammar, you must also use the `language_customization_id` parameter to specify the name of the custom language model for which the grammar is defined. The service recognizes only strings that are recognized by the specified grammar; it does not recognize other custom words from the model's words resource. See [Grammars](https://cloud.ibm.com/docs/speech-to-text/output.html).
232232
/// </summary>
233233
public string GrammarName { get; set; }
234234
/// <summary>
235-
/// If `true`, the service redacts, or masks, numeric data from final transcripts. The feature redacts any number that has three or more consecutive digits by replacing each digit with an `X` character. It is intended to redact sensitive numeric data, such as credit card numbers. By default, the service performs no redaction. \n\nWhen you enable redaction, the service automatically enables smart formatting, regardless of whether you explicitly disable that feature. To ensure maximum security, the service also disables keyword spotting (ignores the `keywords` and `keywords_threshold` parameters) and returns only a single final transcript (forces the `max_alternatives` parameter to be `1`). \n\n**Note:** Applies to US English, Japanese, and Korean transcription only. \n\nSee [Numeric redaction](https://cloud.ibm.com/docs/speech-to-text/output.html#redaction).
235+
/// If `true`, the service redacts, or masks, numeric data from final transcripts. The feature redacts any number that has three or more consecutive digits by replacing each digit with an `X` character. It is intended to redact sensitive numeric data, such as credit card numbers. By default, the service performs no redaction. \n\nWhen you enable redaction, the service automatically enables smart formatting, regardless of whether you explicitly disable that feature. To ensure maximum security, the service also disables keyword spotting (ignores the `keywords` and `keywords_threshold` parameters) and returns only a single final transcript (forces the `max_alternatives` parameter to be `1`). \n\n**Note:** Applies to US English, Japanese, and Korean transcription only. \n\nSee [Numeric redaction](https://cloud.ibm.com/docs/speech-to-text?topic=speech-to-text-output#redaction).
236236
/// </summary>
237237
public string Redaction { get; set; }
238238
/// <summary>

0 commit comments

Comments
 (0)