@fonoster/autopilot 0.17.3 → 0.17.4

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.
@@ -130,7 +130,7 @@ const machine = setup_1.machineSetup.createMachine({
130
130
  SPEECH_RESULT: {
131
131
  target: "processingUserRequest",
132
132
  description: "Capture only a single late speech across the entire request processing.",
133
- guard: ({ context }) => !context.hasLateSpeech,
133
+ guard: ({ context }) => context.allowUserBargeIn && !context.hasLateSpeech,
134
134
  actions: [
135
135
  { type: "interruptPlayback" },
136
136
  { type: "appendSpeech" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fonoster/autopilot",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
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",
@@ -35,11 +35,11 @@
35
35
  "dependencies": {
36
36
  "@aws-sdk/client-s3": "^3.958.0",
37
37
  "@dmitryrechkin/json-schema-to-zod": "^1.0.1",
38
- "@fonoster/common": "^0.17.1",
39
- "@fonoster/logger": "^0.17.1",
40
- "@fonoster/sdk": "^0.17.1",
41
- "@fonoster/types": "^0.17.1",
42
- "@fonoster/voice": "^0.17.3",
38
+ "@fonoster/common": "^0.17.4",
39
+ "@fonoster/logger": "^0.17.4",
40
+ "@fonoster/sdk": "^0.17.4",
41
+ "@fonoster/types": "^0.17.4",
42
+ "@fonoster/voice": "^0.17.4",
43
43
  "@langchain/anthropic": "^1.3.3",
44
44
  "@langchain/community": "^1.1.1",
45
45
  "@langchain/core": "^1.1.8",
@@ -59,5 +59,5 @@
59
59
  "xstate": "^5.17.3",
60
60
  "zod": "^3.25.76"
61
61
  },
62
- "gitHead": "7dc514223ea328efb5a4a6b15d92ebbf048e1f73"
62
+ "gitHead": "e0b7321a89bdc35b7081aeffefe7d68870c5c26f"
63
63
  }