@voctiv/agent-sdk 0.2.6 → 0.2.7
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/README.md +141 -2
- package/dist/define-script.d.ts +15 -2
- package/dist/define-script.d.ts.map +1 -1
- package/dist/define-script.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -469,6 +469,145 @@ await platform.messaging.send({
|
|
|
469
469
|
|
|
470
470
|
Outbound messages are transported through legacy Redis streams. `platform.messaging.message$` currently replays the inbound message that started a headless messaging script; it is not a live subscription to all future Redis messages.
|
|
471
471
|
|
|
472
|
+
## Offline / Headless Logic
|
|
473
|
+
|
|
474
|
+
Offline, or headless, sessions run a script without a live SIP call, WebSocket audio stream, RTP pipeline, ASR, or TTS playback. They are used for platform-driven background logic, queued dialog processing, and messaging events.
|
|
475
|
+
|
|
476
|
+
The script entry point is still the same `defineScript()` handler. Detect this mode with `context.headless`:
|
|
477
|
+
|
|
478
|
+
```ts
|
|
479
|
+
export default defineScript(async ({ channel, context, logger, platform }) => {
|
|
480
|
+
if (!context.headless) {
|
|
481
|
+
channel.sip.answer();
|
|
482
|
+
await channel.audio.say('Hello.');
|
|
483
|
+
return;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
logger.log('Running offline logic', {
|
|
487
|
+
dialogUuid: context.dialogUuid,
|
|
488
|
+
entryPoint: context.entryPoint,
|
|
489
|
+
});
|
|
490
|
+
|
|
491
|
+
// Offline logic usually works with text, params, env, NLU, LLM, and platform APIs.
|
|
492
|
+
});
|
|
493
|
+
```
|
|
494
|
+
|
|
495
|
+
Headless sessions can be started by host integrations such as:
|
|
496
|
+
|
|
497
|
+
- a platform dialog queue worker that loads pending dialogs;
|
|
498
|
+
- an inbound messaging worker, usually with `context.entryPoint === 'on_message_api_received'`;
|
|
499
|
+
- an HTTP/API request that asks ScriptEngine to run a script without media.
|
|
500
|
+
|
|
501
|
+
### What Works In Headless
|
|
502
|
+
|
|
503
|
+
These APIs are available and are the intended tools for offline scripts:
|
|
504
|
+
|
|
505
|
+
- `context.dialogParams`, `context.initialData`, `context.dialogEntity`, and `context.callEntity` for platform data.
|
|
506
|
+
- `context.env$` for persisted per-dialog state.
|
|
507
|
+
- `platform.nlu.extract()` for text NLU when legacy platform compatibility is enabled.
|
|
508
|
+
- `platform.messaging.send()` for outbound messages through the configured platform messaging transport.
|
|
509
|
+
- `platform.call()` for scheduling outbound platform-managed calls.
|
|
510
|
+
- `platform.dialog.entryPoint` and `platform.dialog.result` for updating dialog routing and outcome.
|
|
511
|
+
- `channel.llm.ask()`, `channel.llm.stream()`, and `channel.llm.extract()` for Omni LLM operations.
|
|
512
|
+
- `logger` for structured logs.
|
|
513
|
+
|
|
514
|
+
Audio and telephony APIs are intentionally inert:
|
|
515
|
+
|
|
516
|
+
- `channel.audio.say()`, `play()`, `preload()`, and `presay()` do not play audio and only log warnings.
|
|
517
|
+
- `channel.createAsr()` returns an inert handle with empty observables.
|
|
518
|
+
- `channel.textInput` does not simulate ASR in headless mode.
|
|
519
|
+
- `channel.sip.state` behaves as an already-active synthetic channel, but real SIP actions such as nested calls and bridging are not available.
|
|
520
|
+
|
|
521
|
+
Use headless mode for text and platform workflows. Use SIP or WS sessions when the script needs real audio, ASR, TTS, DTMF, pre-answer media, or bridging.
|
|
522
|
+
|
|
523
|
+
### Inbound Messaging
|
|
524
|
+
|
|
525
|
+
When a headless script is triggered by an inbound message, the runtime exposes the message as `context.inboundMessage` and also replays it on `platform.messaging.message$`.
|
|
526
|
+
|
|
527
|
+
```ts
|
|
528
|
+
export default defineScript(async ({ context, platform, logger }) => {
|
|
529
|
+
const inbound = context.inboundMessage;
|
|
530
|
+
const payload = inbound?.payload ?? {};
|
|
531
|
+
|
|
532
|
+
const text =
|
|
533
|
+
typeof payload.text === 'string'
|
|
534
|
+
? payload.text
|
|
535
|
+
: typeof payload.message === 'string'
|
|
536
|
+
? payload.message
|
|
537
|
+
: '';
|
|
538
|
+
|
|
539
|
+
logger.log('Inbound message received', {
|
|
540
|
+
src: inbound?.src,
|
|
541
|
+
dst: inbound?.dst,
|
|
542
|
+
channelType: inbound?.channelType,
|
|
543
|
+
text,
|
|
544
|
+
});
|
|
545
|
+
|
|
546
|
+
if (!text.trim()) {
|
|
547
|
+
return { output: { reason: 'empty_message' } };
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
const nlu = await platform.nlu.extract(text, {
|
|
551
|
+
intents: ['support_request', 'callback_request'],
|
|
552
|
+
});
|
|
553
|
+
|
|
554
|
+
await platform.messaging.send({
|
|
555
|
+
src: inbound?.dst ?? 'bot',
|
|
556
|
+
destination: inbound?.src ?? '',
|
|
557
|
+
text: 'Thanks, I received your message.',
|
|
558
|
+
});
|
|
559
|
+
|
|
560
|
+
return {
|
|
561
|
+
output: {
|
|
562
|
+
text,
|
|
563
|
+
nlu,
|
|
564
|
+
},
|
|
565
|
+
};
|
|
566
|
+
});
|
|
567
|
+
```
|
|
568
|
+
|
|
569
|
+
`context.inboundMessage.payload` is the raw transport payload. Different messaging providers may use different field names (`text`, `message`, `body`, `content`, etc.), so production scripts should normalize the text they need.
|
|
570
|
+
|
|
571
|
+
### Persisting Offline State
|
|
572
|
+
|
|
573
|
+
Use `context.env$` to keep state between offline runs for the same dialog:
|
|
574
|
+
|
|
575
|
+
```ts
|
|
576
|
+
const env = context.env$?.getValue() ?? {};
|
|
577
|
+
const messageCount = Number(env.messageCount ?? 0) + 1;
|
|
578
|
+
|
|
579
|
+
context.env$?.next({
|
|
580
|
+
...env,
|
|
581
|
+
messageCount,
|
|
582
|
+
lastMessageAt: new Date().toISOString(),
|
|
583
|
+
});
|
|
584
|
+
```
|
|
585
|
+
|
|
586
|
+
Do not return `env` from the script. ScriptEngine snapshots `context.env$` after completion and persists it according to the host integration.
|
|
587
|
+
|
|
588
|
+
### Combining Voice And Offline In One Script
|
|
589
|
+
|
|
590
|
+
One script can support both live calls and offline messages by branching on `context.headless`:
|
|
591
|
+
|
|
592
|
+
```ts
|
|
593
|
+
export default defineScript(async ({ channel, context, platform }) => {
|
|
594
|
+
if (context.headless) {
|
|
595
|
+
const text = String(context.inboundMessage?.payload?.text ?? '');
|
|
596
|
+
|
|
597
|
+
if (text.includes('call me')) {
|
|
598
|
+
await platform.call(context.msisdn, {
|
|
599
|
+
entryPoint: 'on_callback',
|
|
600
|
+
});
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
return { output: { handledOffline: true } };
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
channel.sip.answer();
|
|
607
|
+
await channel.audio.say('How can I help you?');
|
|
608
|
+
});
|
|
609
|
+
```
|
|
610
|
+
|
|
472
611
|
## Dialog Context And Persisted Env
|
|
473
612
|
|
|
474
613
|
`context` includes identity, telephony fields, params, routing metadata, and runtime helpers.
|
|
@@ -524,9 +663,9 @@ Headless channels are for offline, queue, or messaging sessions:
|
|
|
524
663
|
- Audio methods are no-ops that log warnings.
|
|
525
664
|
- SIP methods are mostly no-ops.
|
|
526
665
|
- `createAsr()` returns an inert handle.
|
|
527
|
-
- LLM
|
|
666
|
+
- LLM, NLU, messaging, platform calls, dialog state, and `env$` still work.
|
|
528
667
|
|
|
529
|
-
Use `context.headless` to branch when a script must behave differently without a real media channel.
|
|
668
|
+
Use `context.headless` to branch when a script must behave differently without a real media channel. See [Offline / Headless Logic](#offline--headless-logic) for details and examples.
|
|
530
669
|
|
|
531
670
|
## Text Input For Tests
|
|
532
671
|
|
package/dist/define-script.d.ts
CHANGED
|
@@ -94,7 +94,13 @@ export interface ScriptDialogContext {
|
|
|
94
94
|
dialogParams: Record<string, unknown>;
|
|
95
95
|
/** Whether Voctiv platform compatibility mode is active. */
|
|
96
96
|
legacyV3Compat: boolean;
|
|
97
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* `true` when the script runs without a real media channel (offline / queue / messaging).
|
|
99
|
+
*
|
|
100
|
+
* In this mode ASR/TTS/audio/SIP operations are inert or synthetic. Use text payloads,
|
|
101
|
+
* `platform.nlu`, `platform.messaging`, `platform.call`, `channel.llm`, and `env$`
|
|
102
|
+
* for background dialog logic.
|
|
103
|
+
*/
|
|
98
104
|
headless: boolean;
|
|
99
105
|
/**
|
|
100
106
|
* Persisted dialog environment for this conversation. ScriptEngine converts the
|
|
@@ -131,7 +137,14 @@ export interface ScriptDialogContext {
|
|
|
131
137
|
recallCount?: number;
|
|
132
138
|
/** Delay in seconds between recall attempts. */
|
|
133
139
|
recallDelay?: number;
|
|
134
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* Inbound message that triggered this headless session.
|
|
142
|
+
*
|
|
143
|
+
* Present for messaging-driven offline runs, commonly with
|
|
144
|
+
* `entryPoint === "on_message_api_received"`. The `payload` field is the raw
|
|
145
|
+
* provider payload; normalize text defensively because transports may use
|
|
146
|
+
* different keys such as `text`, `message`, `body`, or `content`.
|
|
147
|
+
*/
|
|
135
148
|
inboundMessage?: InboundMessage;
|
|
136
149
|
/**
|
|
137
150
|
* Async-phase execution budget: remaining time, extension pool, {@link ScriptRunTime.extend}.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"define-script.d.ts","sourceRoot":"","sources":["../src/define-script.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AACxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC1D,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACrE,OAAO,KAAK,EACV,sBAAsB,EACtB,kBAAkB,EACnB,MAAM,uBAAuB,CAAC;AAE/B;;;;;;;;;GASG;AACH,MAAM,WAAW,YAAY;IAC3B;;;;;;;;;;;OAWG;IACH,OAAO,CACL,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,iBAAiB,GAC1B,OAAO,CAAC,cAAc,CAAC,CAAC;IAC3B;;;;;OAKG;IACH,QAAQ,CACN,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE,iBAAiB,GAC1B,UAAU,CAAC,cAAc,CAAC,CAAC;CAC/B;AAED;;;;;;GAMG;AACH,MAAM,WAAW,mBAAmB;IAClC,gDAAgD;IAChD,IAAI,EAAE,MAAM,CAAC;IACb,2DAA2D;IAC3D,QAAQ,EAAE,MAAM,CAAC;IACjB,6DAA6D;IAC7D,IAAI,EAAE,MAAM,CAAC;IACb,uCAAuC;IACvC,UAAU,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,MAAM,EAAE,MAAM,CAAC;IACf,4DAA4D;IAC5D,QAAQ,EAAE,MAAM,CAAC;IACjB,2DAA2D;IAC3D,iBAAiB,EAAE,MAAM,CAAC;IAC1B,sCAAsC;IACtC,QAAQ,EAAE,MAAM,CAAC;IACjB,kCAAkC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,oEAAoE;IACpE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;;;;OAOG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;;;;OAOG;IACH,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrC;;;;;;;;;OASG;IACH,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACtC,4DAA4D;IAC5D,cAAc,EAAE,OAAO,CAAC;IAExB
|
|
1
|
+
{"version":3,"file":"define-script.d.ts","sourceRoot":"","sources":["../src/define-script.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"define-script.js","sourceRoot":"","sources":["../src/define-script.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"define-script.js","sourceRoot":"","sources":["../src/define-script.ts"],"names":[],"mappings":";;AAobA,oCAEC;AA3BD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,YAAY,CAAC,EAAY;IACvC,OAAO,EAAE,CAAC;AACZ,CAAC"}
|
package/package.json
CHANGED