@kuralle-syrinx/pipecat-smart-turn 4.3.0 → 4.4.0
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/package.json +2 -2
- package/src/eos-plugin.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuralle-syrinx/pipecat-smart-turn",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Pipecat Smart Turn v3 semantic endpointing for Syrinx — local ONNX end-of-turn analysis",
|
|
6
6
|
"keywords": [
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@huggingface/transformers": "^4.2.0",
|
|
35
35
|
"onnxruntime-node": "1.24.3",
|
|
36
|
-
"@kuralle-syrinx/core": "4.
|
|
36
|
+
"@kuralle-syrinx/core": "4.4.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"typescript": "^5.7.0",
|
package/src/eos-plugin.ts
CHANGED
|
@@ -517,6 +517,8 @@ export class PipecatEOSPlugin implements VoicePlugin {
|
|
|
517
517
|
timestampMs: Date.now(),
|
|
518
518
|
text,
|
|
519
519
|
transcripts: state.finalPackets,
|
|
520
|
+
endpointingOwner: "smart_turn",
|
|
521
|
+
endpointingReason: "end_of_speech",
|
|
520
522
|
} satisfies EndOfSpeechPacket);
|
|
521
523
|
this.turns.delete(state.contextId);
|
|
522
524
|
}
|