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
> example: `-i medical_process,nationality` or `--redact_pii_policies medical_process,nationality`
146
-
> The list of PII policies to redact ([source](https://www.assemblyai.com/docs/audio-intelligence#pii-redaction)), comma-separated. Required if the redact_pii flag is true.
146
+
> The list of PII policies to redact ([source](https://www.assemblyai.com/docs/Models/pii_redaction)), comma-separated. Required if the redact_pii flag is true.
Copy file name to clipboardExpand all lines: cmd/transcribe.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ var transcribeCmd = &cobra.Command{
139
139
if_, ok:=S.PIIRedactionPolicyMap[policy]; !ok {
140
140
printErrorProps:= S.PrintErrorProps{
141
141
Error: errors.New("Invalid redaction policy"),
142
-
Message: fmt.Sprintf("%s is not a valid policy. See https://www.assemblyai.com/docs/audio-intelligence#pii-redaction for the complete list of supported policies.", policy),
142
+
Message: fmt.Sprintf("%s is not a valid policy. See https://www.assemblyai.com/docs/Models/pii_redaction for the complete list of supported policies.", policy),
143
143
}
144
144
U.PrintError(printErrorProps)
145
145
return
@@ -189,7 +189,7 @@ var transcribeCmd = &cobra.Command{
189
189
if_, ok:=S.LanguageMap[languageCode]; !ok {
190
190
printErrorProps:= S.PrintErrorProps{
191
191
Error: errors.New("Invalid language code"),
192
-
Message: "Invalid language code. See https://www.assemblyai.com/docs#supported-languages for supported languages.",
192
+
Message: "Invalid language code. See https://www.assemblyai.com/docs/Concepts/faq#supported-languages for supported languages.",
0 commit comments