Integrations
Types
TTSMonsterVoice
Represents a voice from TTS Monster
Property | Type | Description |
---|---|---|
voice_id | string | Unique ID of the voice |
name | string | Name of the voice |
sample | string | URL for a audio sample |
Functions
voices
Function () => Promise<TTSMonsterVoice[]>
Requests a list of available TTSMonsterVoices from TTS Monster
generate
Function (voice_id: string, message: string) => Promise<string>
Generate a TTS voice message using the provided voice. Returns the URL of the voice message
Argument | Type | Example | Description |
---|---|---|---|
voice_id | string | ID of the voice to use | |
message | string | Message for the voice to say |
generateParsed
Function (message: string) => Promise<string[]>
Generate a TTS voice message by parsing a message, determines the voices using the (Voice) example message
syntax.
Returns a list of URLs
Argument | Type | Example | Description |
---|---|---|---|
message | string | Message to parse and generated voices for |