@mastra/voice-speechify 0.14.1-alpha.0 → 0.14.1-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mastra/voice-speechify
2
2
 
3
- Mastra Voice integration with Speechify's API.
3
+ Add Speechify text-to-speech to Mastra with configurable voices, languages, audio formats, synthesis controls, and speaker discovery.
4
4
 
5
5
  ## Installation
6
6
 
@@ -10,13 +10,7 @@ npm install @mastra/voice-speechify
10
10
 
11
11
  ## Usage
12
12
 
13
- First, set your Speechify API key in your environment:
14
-
15
- ```bash
16
- export SPEECHIFY_API_KEY=your_api_key_here
17
- ```
18
-
19
- Then use it in your code:
13
+ Set the API credentials required by your voice provider.
20
14
 
21
15
  ```typescript
22
16
  import { SpeechifyVoice } from '@mastra/voice-speechify';
@@ -43,46 +37,14 @@ const stream = await voice.speak('Hello world', {
43
37
  stream.pipe(destination);
44
38
  ```
45
39
 
46
- ## Configuration
47
-
48
- The `SpeechifyVoice` constructor accepts the following options:
49
-
50
- ```typescript
51
- interface SpeechifyConfig {
52
- name?: SpeechifyModel; // Optional Speechify model name (default: 'simba-english')
53
- apiKey?: string; // Optional API key (can also use env var)
54
- }
55
-
56
- new SpeechifyVoice({
57
- speechModel?: SpeechifyConfig,
58
- speaker?: string // Optional default speaker ID
59
- })
60
- ```
61
-
62
- ## Available Models
40
+ ## Documentation
63
41
 
64
- - `simba-3.2`: Speechify's latest streaming-native model with the lowest latency and richest expressivity. Recommended for English. Currently English only.
65
- - `simba-3.0`: The earlier Simba 3 model, still available. Currently English only.
66
- - `simba-english`: The default model, optimized for English.
67
- - `simba-multilingual`: Optimized for non-English or mixed-language input.
42
+ - [Speechify](https://mastra.ai/integrations/voice/speechify)
68
43
 
69
- The model can also be overridden per request. When overriding to a Simba 3 model, pass a matching speaker too:
70
-
71
- ```typescript
72
- const stream = await voice.speak('Hello world', { model: 'simba-3.2', speaker: 'harper_32' });
73
- ```
74
-
75
- ## Available Speakers
76
-
77
- You can get a list of available speakers:
78
-
79
- ```typescript
80
- const speakers = await voice.getSpeakers();
81
- ```
44
+ ## Changelog
82
45
 
83
- Voice availability depends on the model:
46
+ See the [package changelog](https://github.com/mastra-ai/mastra/blob/main/voice/speechify/CHANGELOG.md) for version history and release notes.
84
47
 
85
- - `simba-3.2` and `simba-3.0` serve a curated voice set only: `beatrice_32`, `dominic_32`, `edmund_32`, `geffen_32`, `harper_32`, `hugh_32`, `imogen_32`, `wyatt_32`. `simba-3.2` also accepts cloned voices approved by Speechify.
86
- - `simba-english` and `simba-multilingual` serve the full classic catalog (`george`, `henry`, `carly`, ...) and self-serve cloned voices.
48
+ ## Support
87
49
 
88
- The default speaker follows the configured model: `harper_32` for the Simba 3 models, otherwise `george`.
50
+ We have an [open community Discord](https://discord.gg/mastra-ai). Come and say hello and let us know if you have any questions or need any help getting things running.
@@ -3,7 +3,7 @@ name: mastra-voice-speechify
3
3
  description: Documentation for @mastra/voice-speechify. Use when working with @mastra/voice-speechify APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/voice-speechify"
6
- version: "0.14.1-alpha.0"
6
+ version: "0.14.1-alpha.1"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.14.1-alpha.0",
2
+ "version": "0.14.1-alpha.1",
3
3
  "package": "@mastra/voice-speechify",
4
4
  "exports": {},
5
5
  "modules": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/voice-speechify",
3
- "version": "0.14.1-alpha.0",
3
+ "version": "0.14.1-alpha.1",
4
4
  "description": "Mastra Speechify voice integration",
5
5
  "type": "module",
6
6
  "files": [