@fonoster/autopilot 0.8.45 → 0.8.47
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/machine/machine.js +1 -9
- package/package.json +7 -7
package/dist/machine/machine.js
CHANGED
|
@@ -303,14 +303,6 @@ const machine = (0, xstate_1.setup)({
|
|
|
303
303
|
actions: { type: "appendSpeech" },
|
|
304
304
|
guard: "isSpeaking",
|
|
305
305
|
description: "Just append the speech result when actively speaking"
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
target: "processingUserRequest",
|
|
309
|
-
guard: (0, xstate_1.not)("isSpeaking"),
|
|
310
|
-
actions: [
|
|
311
|
-
{ type: "appendSpeech" }
|
|
312
|
-
],
|
|
313
|
-
description: "Append final speech and process the request"
|
|
314
306
|
}
|
|
315
307
|
]
|
|
316
308
|
}
|
|
@@ -350,7 +342,7 @@ const machine = (0, xstate_1.setup)({
|
|
|
350
342
|
target: "listeningToUser",
|
|
351
343
|
description: "Event from VAD or similar system.",
|
|
352
344
|
actions: [{ type: "cleanSpeech" }]
|
|
353
|
-
}
|
|
345
|
+
}
|
|
354
346
|
},
|
|
355
347
|
invoke: {
|
|
356
348
|
src: "doProcessUserRequest",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fonoster/autopilot",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.47",
|
|
4
4
|
"description": "Voice AI for the Fonoster platform",
|
|
5
5
|
"author": "Pedro Sanders <psanders@fonoster.com>",
|
|
6
6
|
"homepage": "https://github.com/fonoster/fonoster#readme",
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@aws-sdk/client-s3": "^3.712.0",
|
|
36
|
-
"@fonoster/common": "^0.8.
|
|
37
|
-
"@fonoster/logger": "^0.8.
|
|
38
|
-
"@fonoster/sdk": "^0.8.
|
|
39
|
-
"@fonoster/types": "^0.8.
|
|
40
|
-
"@fonoster/voice": "^0.8.
|
|
36
|
+
"@fonoster/common": "^0.8.47",
|
|
37
|
+
"@fonoster/logger": "^0.8.47",
|
|
38
|
+
"@fonoster/sdk": "^0.8.47",
|
|
39
|
+
"@fonoster/types": "^0.8.47",
|
|
40
|
+
"@fonoster/voice": "^0.8.47",
|
|
41
41
|
"@langchain/community": "^0.3.19",
|
|
42
42
|
"@langchain/core": "^0.3.23",
|
|
43
43
|
"@langchain/groq": "^0.1.2",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"typescript": "^5.5.4"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "33970ac7794e8e55333936ad3ad84f7260d5c138"
|
|
59
59
|
}
|