@absolutejs/voice 0.0.22-beta.555 → 0.0.22-beta.556
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 +1 -0
- package/dist/testing/index.js +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5253,6 +5253,7 @@ var createVoiceSession = (options) => {
|
|
|
5253
5253
|
};
|
|
5254
5254
|
};
|
|
5255
5255
|
const completeTurn = async (session, turn) => {
|
|
5256
|
+
console.error(`[voice] completeTurn ENTER session=${options.id} turn=${turn.id} textLen=${turn.text?.length ?? 0}`);
|
|
5256
5257
|
const liveOpsControl = await options.liveOps?.getControl(options.id);
|
|
5257
5258
|
if (liveOpsControl?.assistantPaused || liveOpsControl?.operatorTakeover) {
|
|
5258
5259
|
await appendTrace({
|
package/dist/testing/index.js
CHANGED
|
@@ -7090,6 +7090,7 @@ var createVoiceSession = (options) => {
|
|
|
7090
7090
|
};
|
|
7091
7091
|
};
|
|
7092
7092
|
const completeTurn = async (session, turn) => {
|
|
7093
|
+
console.error(`[voice] completeTurn ENTER session=${options.id} turn=${turn.id} textLen=${turn.text?.length ?? 0}`);
|
|
7093
7094
|
const liveOpsControl = await options.liveOps?.getControl(options.id);
|
|
7094
7095
|
if (liveOpsControl?.assistantPaused || liveOpsControl?.operatorTakeover) {
|
|
7095
7096
|
await appendTrace({
|