Fallback vendors for recognizer and synthisizer (#105)

* Update recognizer.md

add fallbackVendor, fallbackLanguge

* Update say.md
This commit is contained in:
Sam Machin
2025-01-21 12:14:00 +00:00
committed by GitHub
parent c7c3c899d3
commit 462189045b
2 changed files with 4 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ It is an object containing the following properties:
| ------------- |-------------| -----|
| vendor | Speech vendor to use (see list below, along with any others you add via the [custom speech API](/docs/speech-api/overview/)) | no |
| language | Language code to use for speech detection. Defaults to the application level setting | no |
| fallbackVendor | Fallback Speech vendor to use (see list below, along with any others you add via the [custom speech API](/docs/speech-api/overview/)) | no |
| fallbackLanguage | Fallback Language code to use for speech detection. Defaults to the application level setting | no |
| interim | If true, interim transcriptions are sent | no (default: false) |
| hints | (google, microsoft, deepgram, nvidia, soniox) Array of words or phrases to assist speech detection. See [examples](#hints) below. | no |
| hintsBoost | (google, nvidia) Number indicating the strength to assign to the configured hints. See examples below. | no |

View File

@@ -20,6 +20,8 @@ You can use the following options in the `say` action:
| text | text to speak; may contain SSML tags | yes |
| synthesizer.vendor | speech vendor to use (see list below, along with any others you add via the [custom speech API](/docs/speech-api/overview/))| no |
| synthesizer.language | language code to use. | no |
| synthesizer.fallbackVendor | fallback speech vendor to use (see list below, along with any others you add via the [custom speech API](/docs/speech-api/overview/))| no |
| synthesizer.fallbackLanguage | fallback language code to use. | no |
| synthesizer.gender | (Google only) MALE, FEMALE, or NEUTRAL. | no |
| synthesizer.voice | voice to use. Note that the voice list differs whether you are using aws or Google. Defaults to application setting, if provided. | no |
| loop | the number of times a text is to be repeated; 0 means repeat forever. Defaults to 1. | no |