speechflow 0.9.8 → 0.9.9
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 +10 -0
- package/LICENSE.txt +674 -0
- package/README.md +66 -16
- package/dst/speechflow-node-a2a-vad.d.ts +16 -0
- package/dst/speechflow-node-a2a-vad.js +431 -0
- package/dst/speechflow-node-t2a-kokoro.d.ts +13 -0
- package/dst/speechflow-node-t2a-kokoro.js +147 -0
- package/dst/speechflow-node-t2t-gemma.js +23 -3
- package/dst/speechflow-node-t2t-ollama.d.ts +13 -0
- package/dst/speechflow-node-t2t-ollama.js +245 -0
- package/dst/speechflow-node-t2t-openai.d.ts +13 -0
- package/dst/speechflow-node-t2t-openai.js +225 -0
- package/dst/speechflow-node-t2t-opus.js +1 -1
- package/dst/speechflow-node-t2t-transformers.d.ts +14 -0
- package/dst/speechflow-node-t2t-transformers.js +260 -0
- package/dst/speechflow-node-x2x-trace.js +2 -2
- package/dst/speechflow.js +86 -40
- package/etc/speechflow.yaml +9 -2
- package/etc/stx.conf +1 -1
- package/package.json +7 -6
- package/src/speechflow-node-t2a-kokoro.ts +160 -0
- package/src/{speechflow-node-t2t-gemma.ts → speechflow-node-t2t-ollama.ts} +44 -10
- package/src/speechflow-node-t2t-openai.ts +246 -0
- package/src/speechflow-node-t2t-transformers.ts +244 -0
- package/src/speechflow-node-x2x-trace.ts +2 -2
- package/src/speechflow.ts +86 -40
- package/src/speechflow-node-t2t-opus.ts +0 -111
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
ChangeLog
|
|
3
3
|
=========
|
|
4
4
|
|
|
5
|
+
0.9.9 (2025-07-13)
|
|
6
|
+
------------------
|
|
7
|
+
|
|
8
|
+
- IMPROVEMENT: add "openai" node for text-to-text translation and spellchecking
|
|
9
|
+
- IMPROVEMENT: add "kokoro" node for local text-to-speech generation
|
|
10
|
+
- CLEANUP: switch "trace" node to output log messages with "debug" level
|
|
11
|
+
- CLEANUP: cleanup CLI option parsing
|
|
12
|
+
- UPGRADE: upgrade NPM dependencies
|
|
13
|
+
|
|
5
14
|
0.9.8 (2025-07-12)
|
|
6
15
|
------------------
|
|
7
16
|
|
|
@@ -16,6 +25,7 @@ ChangeLog
|
|
|
16
25
|
------------------
|
|
17
26
|
|
|
18
27
|
- IMPROVEMENT: major refactoring to object-mode streaming for supporting timestamps
|
|
28
|
+
- UPGRADE: upgrade NPM dependencies
|
|
19
29
|
|
|
20
30
|
0.9.5 (2025-04-27)
|
|
21
31
|
------------------
|