retell-sdk 5.13.0 → 5.14.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.
@@ -0,0 +1,395 @@
1
+ import { APIResource } from "../core/resource.mjs";
2
+ import { APIPromise } from "../core/api-promise.mjs";
3
+ import { RequestOptions } from "../internal/request-options.mjs";
4
+ export declare class Playground extends APIResource {
5
+ /**
6
+ * Stateless playground completion. Send the full conversation history (same shape
7
+ * as chat completion messages) and receive only the newly generated messages.
8
+ * Nothing is persisted server-side — the caller manages conversation state.
9
+ */
10
+ completion(agentID: string, params: PlaygroundCompletionParams, options?: RequestOptions): APIPromise<PlaygroundCompletionResponse>;
11
+ }
12
+ export interface PlaygroundCompletionResponse {
13
+ /**
14
+ * New messages generated by the agent. Same shape as chat completion response
15
+ * messages. Does not include the input messages.
16
+ */
17
+ messages: Array<PlaygroundCompletionResponse.MessageBase | PlaygroundCompletionResponse.ToolCallInvocationMessageBase | PlaygroundCompletionResponse.ToolCallResultMessageBase | PlaygroundCompletionResponse.NodeTransitionMessageBase | PlaygroundCompletionResponse.StateTransitionMessageBase>;
18
+ /**
19
+ * Whether the agent ended the conversation.
20
+ */
21
+ call_ended?: boolean;
22
+ /**
23
+ * Current node id (conversation-flow agents).
24
+ */
25
+ current_node_id?: string;
26
+ /**
27
+ * Current state name (retell-llm agents).
28
+ */
29
+ current_state?: string;
30
+ /**
31
+ * Updated dynamic variables after this turn.
32
+ */
33
+ dynamic_variables?: {
34
+ [key: string]: string;
35
+ };
36
+ /**
37
+ * Knowledge base chunks retrieved for this turn.
38
+ */
39
+ knowledge_base_retrieved_contents?: Array<string>;
40
+ }
41
+ export declare namespace PlaygroundCompletionResponse {
42
+ interface MessageBase {
43
+ /**
44
+ * Content of the message
45
+ */
46
+ content: string;
47
+ /**
48
+ * Documents whether this message is sent by agent or user.
49
+ */
50
+ role: 'agent' | 'user';
51
+ /**
52
+ * Create timestamp of the message
53
+ */
54
+ created_timestamp?: number;
55
+ /**
56
+ * Unique id of the message
57
+ */
58
+ message_id?: string;
59
+ }
60
+ interface ToolCallInvocationMessageBase {
61
+ /**
62
+ * Arguments for this tool call, it's a stringified JSON object.
63
+ */
64
+ arguments: string;
65
+ /**
66
+ * Name of the function in this tool call.
67
+ */
68
+ name: string;
69
+ /**
70
+ * This is a tool call invocation.
71
+ */
72
+ role: 'tool_call_invocation';
73
+ /**
74
+ * Tool call id, globally unique.
75
+ */
76
+ tool_call_id: string;
77
+ /**
78
+ * Create timestamp of the message
79
+ */
80
+ created_timestamp?: number;
81
+ /**
82
+ * Unique id of the message
83
+ */
84
+ message_id?: string;
85
+ /**
86
+ * Optional thought signature from Google Gemini thinking models. This is used
87
+ * internally to maintain reasoning chain in multi-turn function calling.
88
+ */
89
+ thought_signature?: string;
90
+ }
91
+ interface ToolCallResultMessageBase {
92
+ /**
93
+ * Result of the tool call, can be a string, a stringified json, etc.
94
+ */
95
+ content: string;
96
+ /**
97
+ * This is the result of a tool call.
98
+ */
99
+ role: 'tool_call_result';
100
+ /**
101
+ * Tool call id, globally unique.
102
+ */
103
+ tool_call_id: string;
104
+ /**
105
+ * Create timestamp of the message
106
+ */
107
+ created_timestamp?: number;
108
+ /**
109
+ * Unique id of the message
110
+ */
111
+ message_id?: string;
112
+ /**
113
+ * Whether the tool call was successful.
114
+ */
115
+ successful?: boolean;
116
+ }
117
+ interface NodeTransitionMessageBase {
118
+ /**
119
+ * This is a node transition.
120
+ */
121
+ role: 'node_transition';
122
+ /**
123
+ * Create timestamp of the message
124
+ */
125
+ created_timestamp?: number;
126
+ /**
127
+ * Former node id
128
+ */
129
+ former_node_id?: string;
130
+ /**
131
+ * Former node name
132
+ */
133
+ former_node_name?: string;
134
+ /**
135
+ * Unique id of the message
136
+ */
137
+ message_id?: string;
138
+ /**
139
+ * New node id
140
+ */
141
+ new_node_id?: string;
142
+ /**
143
+ * New node name
144
+ */
145
+ new_node_name?: string;
146
+ /**
147
+ * How this node was reached. "global" means a global node transition,
148
+ * "global_go_back" means returning from a global node, "interrupt_go_back" means
149
+ * going back due to user interruption, and "normal" means a regular edge
150
+ * transition.
151
+ */
152
+ transition_type?: 'global' | 'global_go_back' | 'interrupt_go_back' | 'normal';
153
+ }
154
+ interface StateTransitionMessageBase {
155
+ /**
156
+ * This is a state transition.
157
+ */
158
+ role: 'state_transition';
159
+ /**
160
+ * Create timestamp of the message
161
+ */
162
+ created_timestamp?: number;
163
+ /**
164
+ * Former state name
165
+ */
166
+ former_state_name?: string;
167
+ /**
168
+ * Unique id of the message
169
+ */
170
+ message_id?: string;
171
+ /**
172
+ * New state name
173
+ */
174
+ new_state_name?: string;
175
+ }
176
+ }
177
+ export interface PlaygroundCompletionParams {
178
+ /**
179
+ * Body param: Full conversation history, same shape as chat completion messages.
180
+ * message_id and created_timestamp are optional — server generates them if
181
+ * omitted.
182
+ */
183
+ messages: Array<PlaygroundCompletionParams.MessageBase | PlaygroundCompletionParams.ToolCallInvocationMessageBase | PlaygroundCompletionParams.ToolCallResultMessageBase | PlaygroundCompletionParams.NodeTransitionMessageBase | PlaygroundCompletionParams.StateTransitionMessageBase>;
184
+ /**
185
+ * Query param: Agent version to use. Defaults to latest.
186
+ */
187
+ version?: number;
188
+ /**
189
+ * Body param: Conversation flow component id. Required when current_node_id refers
190
+ * to a node within a component.
191
+ */
192
+ component_id?: string;
193
+ /**
194
+ * Body param: Current node id for conversation-flow agents. Used to resume from a
195
+ * specific node. Must be provided together with component_id when testing
196
+ * components.
197
+ */
198
+ current_node_id?: string;
199
+ /**
200
+ * Body param: Current state name for retell-llm agents. Used to resume from a
201
+ * specific state.
202
+ */
203
+ current_state?: string;
204
+ /**
205
+ * Body param: Key-value pairs for dynamic variable substitution.
206
+ */
207
+ dynamic_variables?: {
208
+ [key: string]: string;
209
+ };
210
+ /**
211
+ * Body param: Optional mock responses for tools. When provided, the agent uses
212
+ * these instead of executing real tool calls.
213
+ */
214
+ tool_mocks?: Array<PlaygroundCompletionParams.ToolMock>;
215
+ }
216
+ export declare namespace PlaygroundCompletionParams {
217
+ interface MessageBase {
218
+ /**
219
+ * Content of the message
220
+ */
221
+ content: string;
222
+ /**
223
+ * Documents whether this message is sent by agent or user.
224
+ */
225
+ role: 'agent' | 'user';
226
+ /**
227
+ * Create timestamp of the message
228
+ */
229
+ created_timestamp?: number;
230
+ /**
231
+ * Unique id of the message
232
+ */
233
+ message_id?: string;
234
+ }
235
+ interface ToolCallInvocationMessageBase {
236
+ /**
237
+ * Arguments for this tool call, it's a stringified JSON object.
238
+ */
239
+ arguments: string;
240
+ /**
241
+ * Name of the function in this tool call.
242
+ */
243
+ name: string;
244
+ /**
245
+ * This is a tool call invocation.
246
+ */
247
+ role: 'tool_call_invocation';
248
+ /**
249
+ * Tool call id, globally unique.
250
+ */
251
+ tool_call_id: string;
252
+ /**
253
+ * Create timestamp of the message
254
+ */
255
+ created_timestamp?: number;
256
+ /**
257
+ * Unique id of the message
258
+ */
259
+ message_id?: string;
260
+ /**
261
+ * Optional thought signature from Google Gemini thinking models. This is used
262
+ * internally to maintain reasoning chain in multi-turn function calling.
263
+ */
264
+ thought_signature?: string;
265
+ }
266
+ interface ToolCallResultMessageBase {
267
+ /**
268
+ * Result of the tool call, can be a string, a stringified json, etc.
269
+ */
270
+ content: string;
271
+ /**
272
+ * This is the result of a tool call.
273
+ */
274
+ role: 'tool_call_result';
275
+ /**
276
+ * Tool call id, globally unique.
277
+ */
278
+ tool_call_id: string;
279
+ /**
280
+ * Create timestamp of the message
281
+ */
282
+ created_timestamp?: number;
283
+ /**
284
+ * Unique id of the message
285
+ */
286
+ message_id?: string;
287
+ /**
288
+ * Whether the tool call was successful.
289
+ */
290
+ successful?: boolean;
291
+ }
292
+ interface NodeTransitionMessageBase {
293
+ /**
294
+ * This is a node transition.
295
+ */
296
+ role: 'node_transition';
297
+ /**
298
+ * Create timestamp of the message
299
+ */
300
+ created_timestamp?: number;
301
+ /**
302
+ * Former node id
303
+ */
304
+ former_node_id?: string;
305
+ /**
306
+ * Former node name
307
+ */
308
+ former_node_name?: string;
309
+ /**
310
+ * Unique id of the message
311
+ */
312
+ message_id?: string;
313
+ /**
314
+ * New node id
315
+ */
316
+ new_node_id?: string;
317
+ /**
318
+ * New node name
319
+ */
320
+ new_node_name?: string;
321
+ /**
322
+ * How this node was reached. "global" means a global node transition,
323
+ * "global_go_back" means returning from a global node, "interrupt_go_back" means
324
+ * going back due to user interruption, and "normal" means a regular edge
325
+ * transition.
326
+ */
327
+ transition_type?: 'global' | 'global_go_back' | 'interrupt_go_back' | 'normal';
328
+ }
329
+ interface StateTransitionMessageBase {
330
+ /**
331
+ * This is a state transition.
332
+ */
333
+ role: 'state_transition';
334
+ /**
335
+ * Create timestamp of the message
336
+ */
337
+ created_timestamp?: number;
338
+ /**
339
+ * Former state name
340
+ */
341
+ former_state_name?: string;
342
+ /**
343
+ * Unique id of the message
344
+ */
345
+ message_id?: string;
346
+ /**
347
+ * New state name
348
+ */
349
+ new_state_name?: string;
350
+ }
351
+ interface ToolMock {
352
+ /**
353
+ * Rule for matching tool calls
354
+ */
355
+ input_match_rule: ToolMock.Type | ToolMock.UnionMember1;
356
+ /**
357
+ * The output of the tool call that will be fed into the LLM. Should be a JSON
358
+ * string.
359
+ */
360
+ output: string;
361
+ /**
362
+ * Name of the tool to mock
363
+ */
364
+ tool_name: string;
365
+ /**
366
+ * For tool calls like transfer_call that require a boolean result. Optional for
367
+ * most tools.
368
+ */
369
+ result?: boolean | null;
370
+ }
371
+ namespace ToolMock {
372
+ interface Type {
373
+ /**
374
+ * Match any input of the tool
375
+ */
376
+ type: 'any';
377
+ }
378
+ interface UnionMember1 {
379
+ /**
380
+ * Arguments to match. Only provided fields will be checked
381
+ */
382
+ args: {
383
+ [key: string]: unknown;
384
+ };
385
+ /**
386
+ * Match only calls with specific arguments
387
+ */
388
+ type: 'partial_match';
389
+ }
390
+ }
391
+ }
392
+ export declare namespace Playground {
393
+ export { type PlaygroundCompletionResponse as PlaygroundCompletionResponse, type PlaygroundCompletionParams as PlaygroundCompletionParams, };
394
+ }
395
+ //# sourceMappingURL=playground.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"playground.d.mts","sourceRoot":"","sources":["../src/resources/playground.ts"],"names":[],"mappings":"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"}