@mastra/voice-sarvam 1.0.0-alpha.0 → 1.0.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @mastra/voice-sarvam
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - Added support for Sarvam's current TTS and STT models. Previously the package only supported the now-deprecated bulbul:v1 and saarika:v1/v2/flash models, which Sarvam has retired. ([#15204](https://github.com/mastra-ai/mastra/pull/15204))
8
+
9
+ **What's new:**
10
+ - TTS models: `bulbul:v2`, `bulbul:v3` (default), and `bulbul:v3-beta`. `bulbul:v3` and `bulbul:v3-beta` support 39 speakers; `bulbul:v2` supports 7 speakers.
11
+ - STT models: `saarika:v2.5` (default) and `saaras:v3`. `saaras:v3` is a multi-mode model that supports `transcribe`, `translate`, `verbatim`, `translit`, and `codemix` via a new `mode` option.
12
+ - New bulbul:v3 parameters: `temperature`, `dict_id`, `output_audio_codec`.
13
+ - Expanded `speech_sample_rate` options: 8000, 16000, 22050, 24000, 32000, 44100, 48000.
14
+
15
+ **Breaking changes:**
16
+ - Removed the deprecated `bulbul:v1` TTS model and its speakers (`meera`, `pavithra`, `maitreyi`, `arvind`, `amol`, `amartya`, `diya`, `neel`, `misha`, `vian`, `arjun`, `maya`). Sarvam has retired the underlying API.
17
+ - Removed the deprecated `saarika:v1`, `saarika:v2`, and `saarika:flash` STT models.
18
+ - The default TTS model is now `bulbul:v3` and the default speaker is `shubh`. Speakers are not interchangeable between bulbul versions — each has its own catalog.
19
+ - The TTS request body now sends `text` (single string) instead of `inputs` (array), matching Sarvam's current API.
20
+
21
+ **Migration:**
22
+
23
+ Before:
24
+
25
+ ```typescript
26
+ const voice = new SarvamVoice({
27
+ speechModel: { model: 'bulbul:v1', language: 'en-IN' },
28
+ speaker: 'meera',
29
+ listeningModel: { model: 'saarika:v2' },
30
+ });
31
+ ```
32
+
33
+ After:
34
+
35
+ ```typescript
36
+ const voice = new SarvamVoice({
37
+ speechModel: { model: 'bulbul:v3', language: 'en-IN' },
38
+ speaker: 'shubh',
39
+ listeningModel: { model: 'saarika:v2.5' },
40
+ });
41
+
42
+ // Or use saaras:v3 for speech translation:
43
+ await voice.listen(audio, { model: 'saaras:v3', mode: 'translate' });
44
+ ```
45
+
46
+ Resolves #15188.
47
+
48
+ ### Patch Changes
49
+
50
+ - Updated dependencies [[`87df955`](https://github.com/mastra-ai/mastra/commit/87df955c028660c075873fd5d74af28233ce32eb), [`8fad147`](https://github.com/mastra-ai/mastra/commit/8fad14759804179c8e080ce4d9dec6ef1a808b31), [`582644c`](https://github.com/mastra-ai/mastra/commit/582644c4a87f83b4f245a84d72b9e8590585012e), [`cbdf3e1`](https://github.com/mastra-ai/mastra/commit/cbdf3e12b3d0c30a6e5347be658e2009648c130a), [`8fe46d3`](https://github.com/mastra-ai/mastra/commit/8fe46d354027f3f0f0846e64219772348de106dd), [`18c67db`](https://github.com/mastra-ai/mastra/commit/18c67dbb9c9ebc26f26f65f7d3ff836e5691ef46), [`4ba3bb1`](https://github.com/mastra-ai/mastra/commit/4ba3bb1e465ad2ddaba3bbf2bc47e0faec32985e), [`5d84914`](https://github.com/mastra-ai/mastra/commit/5d84914e0e520c642a40329b210b413fcd139898), [`8dcc77e`](https://github.com/mastra-ai/mastra/commit/8dcc77e78a5340f5848f74b9e9f1b3da3513c1f5), [`aa67fc5`](https://github.com/mastra-ai/mastra/commit/aa67fc59ee8a5eeff1f23eb05970b8d7a536c8ff), [`fd2f314`](https://github.com/mastra-ai/mastra/commit/fd2f31473d3449b6b97e837ef8641264377f41a7), [`fa8140b`](https://github.com/mastra-ai/mastra/commit/fa8140bcd4251d2e3ac85fdc5547dfc4f372b5be), [`190f452`](https://github.com/mastra-ai/mastra/commit/190f45258b0640e2adfc8219fa3258cdc5b8f071), [`e80fead`](https://github.com/mastra-ai/mastra/commit/e80fead1412cc0d1b2f7d6a1ce5017d9e0098ff7), [`0287b64`](https://github.com/mastra-ai/mastra/commit/0287b644a5c3272755cf3112e71338106664103b), [`7e7bf60`](https://github.com/mastra-ai/mastra/commit/7e7bf606886bf374a6f9d4ca9b09dd83d0533372), [`184907d`](https://github.com/mastra-ai/mastra/commit/184907d775d8609c03c26e78ccaf37315f3aa287), [`075e91a`](https://github.com/mastra-ai/mastra/commit/075e91a4549baf46ad7a42a6a8ac8dfa78cc09e6), [`0c4cd13`](https://github.com/mastra-ai/mastra/commit/0c4cd131931c04ac5405373c932a242dbe88edd6), [`b16a753`](https://github.com/mastra-ai/mastra/commit/b16a753d5748440248d7df82e29bb987a9c8386c)]:
51
+ - @mastra/core@1.25.0
52
+
3
53
  ## 1.0.0-alpha.0
4
54
 
5
55
  ### Major Changes
@@ -3,7 +3,7 @@ name: mastra-voice-sarvam
3
3
  description: Documentation for @mastra/voice-sarvam. Use when working with @mastra/voice-sarvam APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/voice-sarvam"
6
- version: "1.0.0-alpha.0"
6
+ version: "1.0.0"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.0",
2
+ "version": "1.0.0",
3
3
  "package": "@mastra/voice-sarvam",
4
4
  "exports": {},
5
5
  "modules": {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/voice-sarvam",
3
- "version": "1.0.0-alpha.0",
3
+ "version": "1.0.0",
4
4
  "description": "Mastra Sarvam AI voice integration",
5
5
  "type": "module",
6
6
  "files": [
@@ -32,9 +32,9 @@
32
32
  "typescript": "^5.9.3",
33
33
  "vitest": "4.0.18",
34
34
  "zod": "^4.3.6",
35
- "@internal/lint": "0.0.82",
36
- "@internal/types-builder": "0.0.57",
37
- "@mastra/core": "1.25.0-alpha.3"
35
+ "@internal/lint": "0.0.83",
36
+ "@mastra/core": "1.25.0",
37
+ "@internal/types-builder": "0.0.58"
38
38
  },
39
39
  "keywords": [
40
40
  "mastra",