open-agents-ai 0.187.565 → 0.187.567
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/dist/index.js +5 -4
- package/npm-shrinkwrap.json +7 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -564604,6 +564604,7 @@ var VOICE_MODELS, SUPERTONIC_LANGS, SUPERTONIC_VOICES, DEFAULT_SUPERTONIC_SETTIN
|
|
|
564604
564604
|
var init_voice = __esm({
|
|
564605
564605
|
"packages/cli/src/tui/voice.ts"() {
|
|
564606
564606
|
"use strict";
|
|
564607
|
+
init_typed_node_events();
|
|
564607
564608
|
init_render2();
|
|
564608
564609
|
init_daemon_registry();
|
|
564609
564610
|
VOICE_MODELS = {
|
|
@@ -565779,11 +565780,11 @@ except Exception as exc:
|
|
|
565779
565780
|
detached: false
|
|
565780
565781
|
});
|
|
565781
565782
|
this.currentPlayback = child;
|
|
565782
|
-
child
|
|
565783
|
+
onChildClose(child, () => {
|
|
565783
565784
|
if (this.currentPlayback === child) this.currentPlayback = null;
|
|
565784
565785
|
resolve43();
|
|
565785
565786
|
});
|
|
565786
|
-
child
|
|
565787
|
+
onChildError(child, () => {
|
|
565787
565788
|
if (this.currentPlayback === child) this.currentPlayback = null;
|
|
565788
565789
|
resolve43();
|
|
565789
565790
|
});
|
|
@@ -565981,11 +565982,11 @@ except Exception as exc:
|
|
|
565981
565982
|
child.stderr?.on("data", (d2) => {
|
|
565982
565983
|
stderr += d2.toString();
|
|
565983
565984
|
});
|
|
565984
|
-
child
|
|
565985
|
+
onChildError(child, (err) => {
|
|
565985
565986
|
clearTimeout(timer);
|
|
565986
565987
|
reject(err);
|
|
565987
565988
|
});
|
|
565988
|
-
child
|
|
565989
|
+
onChildClose(child, () => {
|
|
565989
565990
|
clearTimeout(timer);
|
|
565990
565991
|
const line = stdout.trim().split("\n").pop() ?? "";
|
|
565991
565992
|
try {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.567",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.567",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
|
@@ -2037,10 +2037,9 @@
|
|
|
2037
2037
|
}
|
|
2038
2038
|
},
|
|
2039
2039
|
"node_modules/aiwg": {
|
|
2040
|
-
"version": "2026.5.
|
|
2041
|
-
"resolved": "https://registry.npmjs.org/aiwg/-/aiwg-2026.5.
|
|
2042
|
-
"integrity": "sha512-
|
|
2043
|
-
"hasInstallScript": true,
|
|
2040
|
+
"version": "2026.5.3",
|
|
2041
|
+
"resolved": "https://registry.npmjs.org/aiwg/-/aiwg-2026.5.3.tgz",
|
|
2042
|
+
"integrity": "sha512-FsqQvmVgGAtwOPF5J5BJ1e1s9dsErb9ybqwKWRLvncXi6rsQeUCsxNMvDqiizEECpo5CTfoxOJiaO0SkPmXSfw==",
|
|
2044
2043
|
"license": "MIT",
|
|
2045
2044
|
"dependencies": {
|
|
2046
2045
|
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
@@ -2070,9 +2069,9 @@
|
|
|
2070
2069
|
"@xenova/transformers": "^2.17.2",
|
|
2071
2070
|
"better-sqlite3": "^12.8.0",
|
|
2072
2071
|
"hnswlib-node": "^3.0.0",
|
|
2073
|
-
"hono": "^4.12.
|
|
2072
|
+
"hono": "^4.12.18",
|
|
2074
2073
|
"node-pty": "^1.0.0",
|
|
2075
|
-
"ws": "^8.
|
|
2074
|
+
"ws": "^8.20.0"
|
|
2076
2075
|
}
|
|
2077
2076
|
},
|
|
2078
2077
|
"node_modules/aiwg/node_modules/glob": {
|
package/package.json
CHANGED