retell-sdk 5.35.0 → 5.37.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/CHANGELOG.md +24 -0
- package/package.json +1 -1
- package/resources/agent.d.mts +98 -49
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +98 -49
- package/resources/agent.d.ts.map +1 -1
- package/resources/agent.js +1 -4
- package/resources/agent.js.map +1 -1
- package/resources/agent.mjs +1 -4
- package/resources/agent.mjs.map +1 -1
- package/resources/batch-call.d.mts +31 -15
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +31 -15
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +141 -49
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +141 -49
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +18 -4
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +18 -4
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/chat-agent.js +1 -4
- package/resources/chat-agent.js.map +1 -1
- package/resources/chat-agent.mjs +1 -4
- package/resources/chat-agent.mjs.map +1 -1
- package/resources/conversation-flow-component.d.mts +459 -0
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +459 -0
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +1507 -589
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +1507 -589
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/tests.d.mts +4 -2
- package/resources/tests.d.mts.map +1 -1
- package/resources/tests.d.ts +4 -2
- package/resources/tests.d.ts.map +1 -1
- package/src/resources/agent.ts +147 -55
- package/src/resources/batch-call.ts +47 -17
- package/src/resources/call.ts +194 -55
- package/src/resources/chat-agent.ts +22 -4
- package/src/resources/conversation-flow-component.ts +699 -15
- package/src/resources/conversation-flow.ts +1556 -188
- package/src/resources/tests.ts +4 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/resources/call.d.ts
CHANGED
|
@@ -143,6 +143,16 @@ export interface PhoneCallResponse {
|
|
|
143
143
|
* Name of the agent.
|
|
144
144
|
*/
|
|
145
145
|
agent_name?: string;
|
|
146
|
+
/**
|
|
147
|
+
* Tag pointing at the agent version used for this call, captured at call creation
|
|
148
|
+
* time and frozen thereafter (unaffected by later tag reassignments). Populated
|
|
149
|
+
* whether the caller dispatched by tag, numeric version, "latest", or
|
|
150
|
+
* "latest_published" — when the caller specified a tag, that tag wins; otherwise
|
|
151
|
+
* the most-recently- assigned tag on the resolved version is used. Absent when no
|
|
152
|
+
* tag points at the resolved version (or for calls created before this field was
|
|
153
|
+
* introduced).
|
|
154
|
+
*/
|
|
155
|
+
agent_tag?: string | null;
|
|
146
156
|
/**
|
|
147
157
|
* Post call analysis that includes information such as sentiment, status, summary,
|
|
148
158
|
* and custom defined data to extract. Available after call ends. Subscribe to
|
|
@@ -1106,6 +1116,16 @@ export interface WebCallResponse {
|
|
|
1106
1116
|
* Name of the agent.
|
|
1107
1117
|
*/
|
|
1108
1118
|
agent_name?: string;
|
|
1119
|
+
/**
|
|
1120
|
+
* Tag pointing at the agent version used for this call, captured at call creation
|
|
1121
|
+
* time and frozen thereafter (unaffected by later tag reassignments). Populated
|
|
1122
|
+
* whether the caller dispatched by tag, numeric version, "latest", or
|
|
1123
|
+
* "latest_published" — when the caller specified a tag, that tag wins; otherwise
|
|
1124
|
+
* the most-recently- assigned tag on the resolved version is used. Absent when no
|
|
1125
|
+
* tag points at the resolved version (or for calls created before this field was
|
|
1126
|
+
* introduced).
|
|
1127
|
+
*/
|
|
1128
|
+
agent_tag?: string | null;
|
|
1109
1129
|
/**
|
|
1110
1130
|
* Post call analysis that includes information such as sentiment, status, summary,
|
|
1111
1131
|
* and custom defined data to extract. Available after call ends. Subscribe to
|
|
@@ -2071,6 +2091,16 @@ export declare namespace CallListResponse {
|
|
|
2071
2091
|
* Name of the agent.
|
|
2072
2092
|
*/
|
|
2073
2093
|
agent_name?: string;
|
|
2094
|
+
/**
|
|
2095
|
+
* Tag pointing at the agent version used for this call, captured at call creation
|
|
2096
|
+
* time and frozen thereafter (unaffected by later tag reassignments). Populated
|
|
2097
|
+
* whether the caller dispatched by tag, numeric version, "latest", or
|
|
2098
|
+
* "latest_published" — when the caller specified a tag, that tag wins; otherwise
|
|
2099
|
+
* the most-recently- assigned tag on the resolved version is used. Absent when no
|
|
2100
|
+
* tag points at the resolved version (or for calls created before this field was
|
|
2101
|
+
* introduced).
|
|
2102
|
+
*/
|
|
2103
|
+
agent_tag?: string | null;
|
|
2074
2104
|
/**
|
|
2075
2105
|
* Post call analysis that includes information such as sentiment, status, summary,
|
|
2076
2106
|
* and custom defined data to extract. Available after call ends. Subscribe to
|
|
@@ -2647,6 +2677,16 @@ export declare namespace CallListResponse {
|
|
|
2647
2677
|
* Name of the agent.
|
|
2648
2678
|
*/
|
|
2649
2679
|
agent_name?: string;
|
|
2680
|
+
/**
|
|
2681
|
+
* Tag pointing at the agent version used for this call, captured at call creation
|
|
2682
|
+
* time and frozen thereafter (unaffected by later tag reassignments). Populated
|
|
2683
|
+
* whether the caller dispatched by tag, numeric version, "latest", or
|
|
2684
|
+
* "latest_published" — when the caller specified a tag, that tag wins; otherwise
|
|
2685
|
+
* the most-recently- assigned tag on the resolved version is used. Absent when no
|
|
2686
|
+
* tag points at the resolved version (or for calls created before this field was
|
|
2687
|
+
* introduced).
|
|
2688
|
+
*/
|
|
2689
|
+
agent_tag?: string | null;
|
|
2650
2690
|
/**
|
|
2651
2691
|
* Post call analysis that includes information such as sentiment, status, summary,
|
|
2652
2692
|
* and custom defined data to extract. Available after call ends. Subscribe to
|
|
@@ -3423,11 +3463,30 @@ export declare namespace CallCreatePhoneCallParams {
|
|
|
3423
3463
|
* speech rate and conversation context. If unset, default value false will apply.
|
|
3424
3464
|
*/
|
|
3425
3465
|
enable_dynamic_voice_speed?: boolean;
|
|
3466
|
+
/**
|
|
3467
|
+
* Master toggle for expressive mode. When true, the agent may add expressive voice
|
|
3468
|
+
* tags to the audio it generates. Only applicable for platform voices. If unset,
|
|
3469
|
+
* defaults to false.
|
|
3470
|
+
*/
|
|
3471
|
+
enable_expressive_mode?: boolean;
|
|
3426
3472
|
/**
|
|
3427
3473
|
* If users stay silent for a period after agent speech, end the call. The minimum
|
|
3428
3474
|
* value allowed is 10,000 ms (10 s). By default, this is set to 600000 (10 min).
|
|
3429
3475
|
*/
|
|
3430
3476
|
end_call_after_silence_ms?: number;
|
|
3477
|
+
/**
|
|
3478
|
+
* The expressive voice tags Retell pre-teaches the model to use when
|
|
3479
|
+
* enable_expressive_mode is true. Custom tags defined in the system prompt are
|
|
3480
|
+
* still allowed. If empty, the agent follows general expressive guidance without a
|
|
3481
|
+
* fixed tag set.
|
|
3482
|
+
*/
|
|
3483
|
+
expressive_emotion_tags?: Array<'empathetic' | 'excited' | 'happy' | 'curious' | 'surprised' | 'sigh' | 'clear throat' | 'pause' | 'long pause' | 'emphasis'>;
|
|
3484
|
+
/**
|
|
3485
|
+
* Custom expressive voice guidance to use instead of the default Retell expressive
|
|
3486
|
+
* prompt when enable_expressive_mode is true. If omitted or blank, the default
|
|
3487
|
+
* expressive prompt will be used.
|
|
3488
|
+
*/
|
|
3489
|
+
expressive_mode_prompt?: string | null;
|
|
3431
3490
|
/**
|
|
3432
3491
|
* When TTS provider for the selected voice is experiencing outages, we would use
|
|
3433
3492
|
* fallback voices listed here for the agent. Voice id and the fallback voice ids
|
|
@@ -3555,6 +3614,10 @@ export declare namespace CallCreatePhoneCallParams {
|
|
|
3555
3614
|
* documentation.
|
|
3556
3615
|
*/
|
|
3557
3616
|
version_description?: string | null;
|
|
3617
|
+
/**
|
|
3618
|
+
* Optional title of the agent version. Used for your own reference.
|
|
3619
|
+
*/
|
|
3620
|
+
version_title?: string | null;
|
|
3558
3621
|
/**
|
|
3559
3622
|
* If set, determines the vocabulary set to use for transcription. This setting
|
|
3560
3623
|
* only applies for English agents, for non English agent, this setting is a no-op.
|
|
@@ -3590,19 +3653,6 @@ export declare namespace CallCreatePhoneCallParams {
|
|
|
3590
3653
|
* will apply.
|
|
3591
3654
|
*/
|
|
3592
3655
|
voice_temperature?: number;
|
|
3593
|
-
/**
|
|
3594
|
-
* Configures when to stop running voicemail detection, as it becomes unlikely to
|
|
3595
|
-
* hit voicemail after a couple minutes, and keep running it will only have
|
|
3596
|
-
* negative impact. The minimum value allowed is 5,000 ms (5 s), and maximum value
|
|
3597
|
-
* allowed is 180,000 (3 minutes). By default, this is set to 30,000 (30 s).
|
|
3598
|
-
*/
|
|
3599
|
-
voicemail_detection_timeout_ms?: number;
|
|
3600
|
-
/**
|
|
3601
|
-
* The message to be played when the call enters a voicemail. Note that this
|
|
3602
|
-
* feature is only available for phone calls. If you want to hangup after hitting
|
|
3603
|
-
* voicemail, set this to empty string.
|
|
3604
|
-
*/
|
|
3605
|
-
voicemail_message?: string;
|
|
3606
3656
|
/**
|
|
3607
3657
|
* If this option is set, the call will try to detect voicemail in the first 3
|
|
3608
3658
|
* minutes of the call. Actions defined (hangup, or leave a message) will be
|
|
@@ -3658,13 +3708,13 @@ export declare namespace CallCreatePhoneCallParams {
|
|
|
3658
3708
|
interface CustomSttConfig {
|
|
3659
3709
|
/**
|
|
3660
3710
|
* Endpointing timeout in milliseconds. Minimum is 100 for Azure, 10 for Deepgram,
|
|
3661
|
-
* 500 for Soniox
|
|
3711
|
+
* 500 for Soniox, 100 for AssemblyAI.
|
|
3662
3712
|
*/
|
|
3663
3713
|
endpointing_ms: number;
|
|
3664
3714
|
/**
|
|
3665
3715
|
* ASR provider name.
|
|
3666
3716
|
*/
|
|
3667
|
-
provider: 'azure' | 'deepgram' | 'soniox';
|
|
3717
|
+
provider: 'azure' | 'deepgram' | 'soniox' | 'assemblyai';
|
|
3668
3718
|
}
|
|
3669
3719
|
/**
|
|
3670
3720
|
* Configuration for guardrail checks to detect and prevent prohibited topics in
|
|
@@ -3691,6 +3741,12 @@ export declare namespace CallCreatePhoneCallParams {
|
|
|
3691
3741
|
* When asked, acknowledge being a virtual assistant.
|
|
3692
3742
|
*/
|
|
3693
3743
|
ai_disclosure?: boolean;
|
|
3744
|
+
/**
|
|
3745
|
+
* Enables Conversational Personality. When true, the agent uses the Conversational
|
|
3746
|
+
* Personality handbook preset, skips Professional Rep Personality during prompt
|
|
3747
|
+
* assembly, and enables internal colloquial rewrite behavior.
|
|
3748
|
+
*/
|
|
3749
|
+
conversational_personality?: boolean;
|
|
3694
3750
|
/**
|
|
3695
3751
|
* Professional call center rep baseline.
|
|
3696
3752
|
*/
|
|
@@ -4368,11 +4424,30 @@ export declare namespace CallRegisterPhoneCallParams {
|
|
|
4368
4424
|
* speech rate and conversation context. If unset, default value false will apply.
|
|
4369
4425
|
*/
|
|
4370
4426
|
enable_dynamic_voice_speed?: boolean;
|
|
4427
|
+
/**
|
|
4428
|
+
* Master toggle for expressive mode. When true, the agent may add expressive voice
|
|
4429
|
+
* tags to the audio it generates. Only applicable for platform voices. If unset,
|
|
4430
|
+
* defaults to false.
|
|
4431
|
+
*/
|
|
4432
|
+
enable_expressive_mode?: boolean;
|
|
4371
4433
|
/**
|
|
4372
4434
|
* If users stay silent for a period after agent speech, end the call. The minimum
|
|
4373
4435
|
* value allowed is 10,000 ms (10 s). By default, this is set to 600000 (10 min).
|
|
4374
4436
|
*/
|
|
4375
4437
|
end_call_after_silence_ms?: number;
|
|
4438
|
+
/**
|
|
4439
|
+
* The expressive voice tags Retell pre-teaches the model to use when
|
|
4440
|
+
* enable_expressive_mode is true. Custom tags defined in the system prompt are
|
|
4441
|
+
* still allowed. If empty, the agent follows general expressive guidance without a
|
|
4442
|
+
* fixed tag set.
|
|
4443
|
+
*/
|
|
4444
|
+
expressive_emotion_tags?: Array<'empathetic' | 'excited' | 'happy' | 'curious' | 'surprised' | 'sigh' | 'clear throat' | 'pause' | 'long pause' | 'emphasis'>;
|
|
4445
|
+
/**
|
|
4446
|
+
* Custom expressive voice guidance to use instead of the default Retell expressive
|
|
4447
|
+
* prompt when enable_expressive_mode is true. If omitted or blank, the default
|
|
4448
|
+
* expressive prompt will be used.
|
|
4449
|
+
*/
|
|
4450
|
+
expressive_mode_prompt?: string | null;
|
|
4376
4451
|
/**
|
|
4377
4452
|
* When TTS provider for the selected voice is experiencing outages, we would use
|
|
4378
4453
|
* fallback voices listed here for the agent. Voice id and the fallback voice ids
|
|
@@ -4500,6 +4575,10 @@ export declare namespace CallRegisterPhoneCallParams {
|
|
|
4500
4575
|
* documentation.
|
|
4501
4576
|
*/
|
|
4502
4577
|
version_description?: string | null;
|
|
4578
|
+
/**
|
|
4579
|
+
* Optional title of the agent version. Used for your own reference.
|
|
4580
|
+
*/
|
|
4581
|
+
version_title?: string | null;
|
|
4503
4582
|
/**
|
|
4504
4583
|
* If set, determines the vocabulary set to use for transcription. This setting
|
|
4505
4584
|
* only applies for English agents, for non English agent, this setting is a no-op.
|
|
@@ -4535,19 +4614,6 @@ export declare namespace CallRegisterPhoneCallParams {
|
|
|
4535
4614
|
* will apply.
|
|
4536
4615
|
*/
|
|
4537
4616
|
voice_temperature?: number;
|
|
4538
|
-
/**
|
|
4539
|
-
* Configures when to stop running voicemail detection, as it becomes unlikely to
|
|
4540
|
-
* hit voicemail after a couple minutes, and keep running it will only have
|
|
4541
|
-
* negative impact. The minimum value allowed is 5,000 ms (5 s), and maximum value
|
|
4542
|
-
* allowed is 180,000 (3 minutes). By default, this is set to 30,000 (30 s).
|
|
4543
|
-
*/
|
|
4544
|
-
voicemail_detection_timeout_ms?: number;
|
|
4545
|
-
/**
|
|
4546
|
-
* The message to be played when the call enters a voicemail. Note that this
|
|
4547
|
-
* feature is only available for phone calls. If you want to hangup after hitting
|
|
4548
|
-
* voicemail, set this to empty string.
|
|
4549
|
-
*/
|
|
4550
|
-
voicemail_message?: string;
|
|
4551
4617
|
/**
|
|
4552
4618
|
* If this option is set, the call will try to detect voicemail in the first 3
|
|
4553
4619
|
* minutes of the call. Actions defined (hangup, or leave a message) will be
|
|
@@ -4603,13 +4669,13 @@ export declare namespace CallRegisterPhoneCallParams {
|
|
|
4603
4669
|
interface CustomSttConfig {
|
|
4604
4670
|
/**
|
|
4605
4671
|
* Endpointing timeout in milliseconds. Minimum is 100 for Azure, 10 for Deepgram,
|
|
4606
|
-
* 500 for Soniox
|
|
4672
|
+
* 500 for Soniox, 100 for AssemblyAI.
|
|
4607
4673
|
*/
|
|
4608
4674
|
endpointing_ms: number;
|
|
4609
4675
|
/**
|
|
4610
4676
|
* ASR provider name.
|
|
4611
4677
|
*/
|
|
4612
|
-
provider: 'azure' | 'deepgram' | 'soniox';
|
|
4678
|
+
provider: 'azure' | 'deepgram' | 'soniox' | 'assemblyai';
|
|
4613
4679
|
}
|
|
4614
4680
|
/**
|
|
4615
4681
|
* Configuration for guardrail checks to detect and prevent prohibited topics in
|
|
@@ -4636,6 +4702,12 @@ export declare namespace CallRegisterPhoneCallParams {
|
|
|
4636
4702
|
* When asked, acknowledge being a virtual assistant.
|
|
4637
4703
|
*/
|
|
4638
4704
|
ai_disclosure?: boolean;
|
|
4705
|
+
/**
|
|
4706
|
+
* Enables Conversational Personality. When true, the agent uses the Conversational
|
|
4707
|
+
* Personality handbook preset, skips Professional Rep Personality during prompt
|
|
4708
|
+
* assembly, and enables internal colloquial rewrite behavior.
|
|
4709
|
+
*/
|
|
4710
|
+
conversational_personality?: boolean;
|
|
4639
4711
|
/**
|
|
4640
4712
|
* Professional call center rep baseline.
|
|
4641
4713
|
*/
|
|
@@ -5314,11 +5386,30 @@ export declare namespace CallCreateWebCallParams {
|
|
|
5314
5386
|
* speech rate and conversation context. If unset, default value false will apply.
|
|
5315
5387
|
*/
|
|
5316
5388
|
enable_dynamic_voice_speed?: boolean;
|
|
5389
|
+
/**
|
|
5390
|
+
* Master toggle for expressive mode. When true, the agent may add expressive voice
|
|
5391
|
+
* tags to the audio it generates. Only applicable for platform voices. If unset,
|
|
5392
|
+
* defaults to false.
|
|
5393
|
+
*/
|
|
5394
|
+
enable_expressive_mode?: boolean;
|
|
5317
5395
|
/**
|
|
5318
5396
|
* If users stay silent for a period after agent speech, end the call. The minimum
|
|
5319
5397
|
* value allowed is 10,000 ms (10 s). By default, this is set to 600000 (10 min).
|
|
5320
5398
|
*/
|
|
5321
5399
|
end_call_after_silence_ms?: number;
|
|
5400
|
+
/**
|
|
5401
|
+
* The expressive voice tags Retell pre-teaches the model to use when
|
|
5402
|
+
* enable_expressive_mode is true. Custom tags defined in the system prompt are
|
|
5403
|
+
* still allowed. If empty, the agent follows general expressive guidance without a
|
|
5404
|
+
* fixed tag set.
|
|
5405
|
+
*/
|
|
5406
|
+
expressive_emotion_tags?: Array<'empathetic' | 'excited' | 'happy' | 'curious' | 'surprised' | 'sigh' | 'clear throat' | 'pause' | 'long pause' | 'emphasis'>;
|
|
5407
|
+
/**
|
|
5408
|
+
* Custom expressive voice guidance to use instead of the default Retell expressive
|
|
5409
|
+
* prompt when enable_expressive_mode is true. If omitted or blank, the default
|
|
5410
|
+
* expressive prompt will be used.
|
|
5411
|
+
*/
|
|
5412
|
+
expressive_mode_prompt?: string | null;
|
|
5322
5413
|
/**
|
|
5323
5414
|
* When TTS provider for the selected voice is experiencing outages, we would use
|
|
5324
5415
|
* fallback voices listed here for the agent. Voice id and the fallback voice ids
|
|
@@ -5446,6 +5537,10 @@ export declare namespace CallCreateWebCallParams {
|
|
|
5446
5537
|
* documentation.
|
|
5447
5538
|
*/
|
|
5448
5539
|
version_description?: string | null;
|
|
5540
|
+
/**
|
|
5541
|
+
* Optional title of the agent version. Used for your own reference.
|
|
5542
|
+
*/
|
|
5543
|
+
version_title?: string | null;
|
|
5449
5544
|
/**
|
|
5450
5545
|
* If set, determines the vocabulary set to use for transcription. This setting
|
|
5451
5546
|
* only applies for English agents, for non English agent, this setting is a no-op.
|
|
@@ -5481,19 +5576,6 @@ export declare namespace CallCreateWebCallParams {
|
|
|
5481
5576
|
* will apply.
|
|
5482
5577
|
*/
|
|
5483
5578
|
voice_temperature?: number;
|
|
5484
|
-
/**
|
|
5485
|
-
* Configures when to stop running voicemail detection, as it becomes unlikely to
|
|
5486
|
-
* hit voicemail after a couple minutes, and keep running it will only have
|
|
5487
|
-
* negative impact. The minimum value allowed is 5,000 ms (5 s), and maximum value
|
|
5488
|
-
* allowed is 180,000 (3 minutes). By default, this is set to 30,000 (30 s).
|
|
5489
|
-
*/
|
|
5490
|
-
voicemail_detection_timeout_ms?: number;
|
|
5491
|
-
/**
|
|
5492
|
-
* The message to be played when the call enters a voicemail. Note that this
|
|
5493
|
-
* feature is only available for phone calls. If you want to hangup after hitting
|
|
5494
|
-
* voicemail, set this to empty string.
|
|
5495
|
-
*/
|
|
5496
|
-
voicemail_message?: string;
|
|
5497
5579
|
/**
|
|
5498
5580
|
* If this option is set, the call will try to detect voicemail in the first 3
|
|
5499
5581
|
* minutes of the call. Actions defined (hangup, or leave a message) will be
|
|
@@ -5549,13 +5631,13 @@ export declare namespace CallCreateWebCallParams {
|
|
|
5549
5631
|
interface CustomSttConfig {
|
|
5550
5632
|
/**
|
|
5551
5633
|
* Endpointing timeout in milliseconds. Minimum is 100 for Azure, 10 for Deepgram,
|
|
5552
|
-
* 500 for Soniox
|
|
5634
|
+
* 500 for Soniox, 100 for AssemblyAI.
|
|
5553
5635
|
*/
|
|
5554
5636
|
endpointing_ms: number;
|
|
5555
5637
|
/**
|
|
5556
5638
|
* ASR provider name.
|
|
5557
5639
|
*/
|
|
5558
|
-
provider: 'azure' | 'deepgram' | 'soniox';
|
|
5640
|
+
provider: 'azure' | 'deepgram' | 'soniox' | 'assemblyai';
|
|
5559
5641
|
}
|
|
5560
5642
|
/**
|
|
5561
5643
|
* Configuration for guardrail checks to detect and prevent prohibited topics in
|
|
@@ -5582,6 +5664,12 @@ export declare namespace CallCreateWebCallParams {
|
|
|
5582
5664
|
* When asked, acknowledge being a virtual assistant.
|
|
5583
5665
|
*/
|
|
5584
5666
|
ai_disclosure?: boolean;
|
|
5667
|
+
/**
|
|
5668
|
+
* Enables Conversational Personality. When true, the agent uses the Conversational
|
|
5669
|
+
* Personality handbook preset, skips Professional Rep Personality during prompt
|
|
5670
|
+
* assembly, and enables internal colloquial rewrite behavior.
|
|
5671
|
+
*/
|
|
5672
|
+
conversational_personality?: boolean;
|
|
5585
5673
|
/**
|
|
5586
5674
|
* Professional call center rep baseline.
|
|
5587
5675
|
*/
|
|
@@ -6599,18 +6687,22 @@ export declare namespace CallListParams {
|
|
|
6599
6687
|
value: string;
|
|
6600
6688
|
}
|
|
6601
6689
|
interface ToolCall {
|
|
6602
|
-
/**
|
|
6603
|
-
* The tool call name to filter on.
|
|
6604
|
-
*/
|
|
6605
|
-
name: string;
|
|
6606
6690
|
/**
|
|
6607
6691
|
* Filter by tool call latency in milliseconds.
|
|
6608
6692
|
*/
|
|
6609
6693
|
latency_ms?: ToolCall.NumberFilter | ToolCall.RangeFilter;
|
|
6694
|
+
/**
|
|
6695
|
+
* The tool call name to filter on.
|
|
6696
|
+
*/
|
|
6697
|
+
name?: string;
|
|
6610
6698
|
/**
|
|
6611
6699
|
* Filter by tool call success status.
|
|
6612
6700
|
*/
|
|
6613
6701
|
success?: ToolCall.Success;
|
|
6702
|
+
/**
|
|
6703
|
+
* The tool call type to filter on.
|
|
6704
|
+
*/
|
|
6705
|
+
type?: string;
|
|
6614
6706
|
}
|
|
6615
6707
|
namespace ToolCall {
|
|
6616
6708
|
interface NumberFilter {
|