@acpfx/tts-deepgram 0.2.0 → 0.2.2
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 +17 -0
- package/manifest.yaml +16 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @acpfx/tts-deepgram
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [0e6838e]
|
|
8
|
+
- @acpfx/core@0.4.0
|
|
9
|
+
- @acpfx/node-sdk@0.3.0
|
|
10
|
+
|
|
11
|
+
## 0.2.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [79c6694]
|
|
16
|
+
- Updated dependencies [a0320a1]
|
|
17
|
+
- @acpfx/core@0.3.0
|
|
18
|
+
- @acpfx/node-sdk@0.2.1
|
|
19
|
+
|
|
3
20
|
## 0.2.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/manifest.yaml
CHANGED
|
@@ -10,3 +10,19 @@ emits:
|
|
|
10
10
|
- lifecycle.ready
|
|
11
11
|
- lifecycle.done
|
|
12
12
|
- control.error
|
|
13
|
+
arguments:
|
|
14
|
+
voice:
|
|
15
|
+
type: string
|
|
16
|
+
default: "aura-2-apollo-en"
|
|
17
|
+
description: "Deepgram voice model name"
|
|
18
|
+
sampleRate:
|
|
19
|
+
type: number
|
|
20
|
+
default: 16000
|
|
21
|
+
description: "Audio sample rate in Hz"
|
|
22
|
+
apiKey:
|
|
23
|
+
type: string
|
|
24
|
+
description: "Deepgram API key (overrides DEEPGRAM_API_KEY env var)"
|
|
25
|
+
env:
|
|
26
|
+
DEEPGRAM_API_KEY:
|
|
27
|
+
required: true
|
|
28
|
+
description: "Deepgram API key for TTS"
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acpfx/tts-deepgram",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"acpfx-tts-deepgram": "./dist/index.js"
|
|
7
7
|
},
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@acpfx/core": "0.
|
|
11
|
-
"@acpfx/node-sdk": "0.
|
|
10
|
+
"@acpfx/core": "0.4.0",
|
|
11
|
+
"@acpfx/node-sdk": "0.3.0"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --outfile=dist/index.js --packages=external"
|