retell-sdk 5.12.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.
- package/CHANGELOG.md +31 -0
- package/client.d.mts +3 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +3 -0
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/internal/utils/env.js +2 -2
- package/internal/utils/env.js.map +1 -1
- package/internal/utils/env.mjs +2 -2
- package/internal/utils/env.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agent.d.mts +22 -45
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +22 -45
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +8 -17
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +8 -17
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +55 -54
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +55 -54
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +10 -6
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +10 -6
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/chat.d.mts +90 -76
- package/resources/chat.d.mts.map +1 -1
- package/resources/chat.d.ts +90 -76
- package/resources/chat.d.ts.map +1 -1
- package/resources/conversation-flow-component.d.mts +207 -48
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +207 -48
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +417 -99
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +417 -99
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/llm.d.mts +153 -9
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +153 -9
- package/resources/llm.d.ts.map +1 -1
- package/resources/phone-number.d.mts +22 -125
- package/resources/phone-number.d.mts.map +1 -1
- package/resources/phone-number.d.ts +22 -125
- package/resources/phone-number.d.ts.map +1 -1
- package/resources/phone-number.js +14 -2
- package/resources/phone-number.js.map +1 -1
- package/resources/phone-number.mjs +14 -2
- package/resources/phone-number.mjs.map +1 -1
- package/resources/playground.d.mts +395 -0
- package/resources/playground.d.mts.map +1 -0
- package/resources/playground.d.ts +395 -0
- package/resources/playground.d.ts.map +1 -0
- package/resources/playground.js +24 -0
- package/resources/playground.js.map +1 -0
- package/resources/playground.mjs +20 -0
- package/resources/playground.mjs.map +1 -0
- package/resources/tests.d.mts +4 -8
- package/resources/tests.d.mts.map +1 -1
- package/resources/tests.d.ts +4 -8
- package/resources/tests.d.ts.map +1 -1
- package/src/client.ts +9 -0
- package/src/internal/utils/env.ts +2 -2
- package/src/resources/agent.ts +23 -42
- package/src/resources/batch-call.ts +9 -15
- package/src/resources/call.ts +64 -47
- package/src/resources/chat-agent.ts +11 -3
- package/src/resources/chat.ts +106 -90
- package/src/resources/conversation-flow-component.ts +300 -48
- package/src/resources/conversation-flow.ts +606 -99
- package/src/resources/index.ts +1 -0
- package/src/resources/llm.ts +201 -6
- package/src/resources/phone-number.ts +22 -141
- package/src/resources/playground.ts +500 -0
- package/src/resources/tests.ts +7 -9
- 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
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
import { APIResource } from "../core/resource.js";
|
|
2
|
+
import { APIPromise } from "../core/api-promise.js";
|
|
3
|
+
import { RequestOptions } from "../internal/request-options.js";
|
|
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.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"playground.d.ts","sourceRoot":"","sources":["../src/resources/playground.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.Playground = void 0;
|
|
5
|
+
const resource_1 = require("../core/resource.js");
|
|
6
|
+
const path_1 = require("../internal/utils/path.js");
|
|
7
|
+
class Playground extends resource_1.APIResource {
|
|
8
|
+
/**
|
|
9
|
+
* Stateless playground completion. Send the full conversation history (same shape
|
|
10
|
+
* as chat completion messages) and receive only the newly generated messages.
|
|
11
|
+
* Nothing is persisted server-side — the caller manages conversation state.
|
|
12
|
+
*/
|
|
13
|
+
completion(agentID, params, options) {
|
|
14
|
+
const { version, ...body } = params;
|
|
15
|
+
return this._client.post((0, path_1.path) `/agent-playground-completion/${agentID}`, {
|
|
16
|
+
query: { version },
|
|
17
|
+
body,
|
|
18
|
+
timeout: this._client._options.timeout ?? 300000,
|
|
19
|
+
...options,
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.Playground = Playground;
|
|
24
|
+
//# sourceMappingURL=playground.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"playground.js","sourceRoot":"","sources":["../src/resources/playground.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kDAA+C;AAG/C,oDAA8C;AAE9C,MAAa,UAAW,SAAQ,sBAAW;IACzC;;;;OAIG;IACH,UAAU,CACR,OAAe,EACf,MAAkC,EAClC,OAAwB;QAExB,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAA,WAAI,EAAA,gCAAgC,OAAO,EAAE,EAAE;YACtE,KAAK,EAAE,EAAE,OAAO,EAAE;YAClB,IAAI;YACJ,OAAO,EAAG,IAAI,CAAC,OAAe,CAAC,QAAQ,CAAC,OAAO,IAAI,MAAM;YACzD,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF;AAnBD,gCAmBC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
import { APIResource } from "../core/resource.mjs";
|
|
3
|
+
import { path } from "../internal/utils/path.mjs";
|
|
4
|
+
export 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, params, options) {
|
|
11
|
+
const { version, ...body } = params;
|
|
12
|
+
return this._client.post(path `/agent-playground-completion/${agentID}`, {
|
|
13
|
+
query: { version },
|
|
14
|
+
body,
|
|
15
|
+
timeout: this._client._options.timeout ?? 300000,
|
|
16
|
+
...options,
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=playground.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"playground.mjs","sourceRoot":"","sources":["../src/resources/playground.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OAGf,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,UAAW,SAAQ,WAAW;IACzC;;;;OAIG;IACH,UAAU,CACR,OAAe,EACf,MAAkC,EAClC,OAAwB;QAExB,MAAM,EAAE,OAAO,EAAE,GAAG,IAAI,EAAE,GAAG,MAAM,CAAC;QACpC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAA,gCAAgC,OAAO,EAAE,EAAE;YACtE,KAAK,EAAE,EAAE,OAAO,EAAE;YAClB,IAAI;YACJ,OAAO,EAAG,IAAI,CAAC,OAAe,CAAC,QAAQ,CAAC,OAAO,IAAI,MAAM;YACzD,GAAG,OAAO;SACX,CAAC,CAAC;IACL,CAAC;CACF"}
|
package/resources/tests.d.mts
CHANGED
|
@@ -132,7 +132,7 @@ export interface TestCaseDefinitionResponse {
|
|
|
132
132
|
/**
|
|
133
133
|
* LLM model to use for simulation
|
|
134
134
|
*/
|
|
135
|
-
llm_model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
135
|
+
llm_model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
136
136
|
/**
|
|
137
137
|
* Array of metric names to evaluate
|
|
138
138
|
*/
|
|
@@ -268,7 +268,7 @@ export interface TestCaseJobResponse {
|
|
|
268
268
|
result_explanation?: string | null;
|
|
269
269
|
/**
|
|
270
270
|
* Snapshot of the transcript generated during test execution. Can be either
|
|
271
|
-
* ConversationFlowPlaygroundSnapshot or
|
|
271
|
+
* ConversationFlowPlaygroundSnapshot or RetellLlmPlaygroundSnapshot
|
|
272
272
|
*/
|
|
273
273
|
transcript_snapshot?: unknown | null;
|
|
274
274
|
}
|
|
@@ -341,7 +341,7 @@ export interface TestCreateTestCaseDefinitionParams {
|
|
|
341
341
|
/**
|
|
342
342
|
* LLM model to use for simulation
|
|
343
343
|
*/
|
|
344
|
-
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
344
|
+
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
345
345
|
/**
|
|
346
346
|
* Mock tool calls for testing
|
|
347
347
|
*/
|
|
@@ -448,10 +448,6 @@ export interface TestListTestCaseDefinitionsParams {
|
|
|
448
448
|
* LLM ID (required when type is retell-llm)
|
|
449
449
|
*/
|
|
450
450
|
llm_id?: string;
|
|
451
|
-
/**
|
|
452
|
-
* Version of the response engine (defaults to latest)
|
|
453
|
-
*/
|
|
454
|
-
version?: number;
|
|
455
451
|
}
|
|
456
452
|
export interface TestUpdateTestCaseDefinitionParams {
|
|
457
453
|
/**
|
|
@@ -463,7 +459,7 @@ export interface TestUpdateTestCaseDefinitionParams {
|
|
|
463
459
|
/**
|
|
464
460
|
* LLM model to use for simulation
|
|
465
461
|
*/
|
|
466
|
-
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
462
|
+
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
467
463
|
/**
|
|
468
464
|
* Array of metric names to evaluate
|
|
469
465
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tests.d.mts","sourceRoot":"","sources":["../src/resources/tests.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"tests.d.mts","sourceRoot":"","sources":["../src/resources/tests.ts"],"names":[],"mappings":"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"}
|
package/resources/tests.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ export interface TestCaseDefinitionResponse {
|
|
|
132
132
|
/**
|
|
133
133
|
* LLM model to use for simulation
|
|
134
134
|
*/
|
|
135
|
-
llm_model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
135
|
+
llm_model: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
136
136
|
/**
|
|
137
137
|
* Array of metric names to evaluate
|
|
138
138
|
*/
|
|
@@ -268,7 +268,7 @@ export interface TestCaseJobResponse {
|
|
|
268
268
|
result_explanation?: string | null;
|
|
269
269
|
/**
|
|
270
270
|
* Snapshot of the transcript generated during test execution. Can be either
|
|
271
|
-
* ConversationFlowPlaygroundSnapshot or
|
|
271
|
+
* ConversationFlowPlaygroundSnapshot or RetellLlmPlaygroundSnapshot
|
|
272
272
|
*/
|
|
273
273
|
transcript_snapshot?: unknown | null;
|
|
274
274
|
}
|
|
@@ -341,7 +341,7 @@ export interface TestCreateTestCaseDefinitionParams {
|
|
|
341
341
|
/**
|
|
342
342
|
* LLM model to use for simulation
|
|
343
343
|
*/
|
|
344
|
-
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
344
|
+
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
345
345
|
/**
|
|
346
346
|
* Mock tool calls for testing
|
|
347
347
|
*/
|
|
@@ -448,10 +448,6 @@ export interface TestListTestCaseDefinitionsParams {
|
|
|
448
448
|
* LLM ID (required when type is retell-llm)
|
|
449
449
|
*/
|
|
450
450
|
llm_id?: string;
|
|
451
|
-
/**
|
|
452
|
-
* Version of the response engine (defaults to latest)
|
|
453
|
-
*/
|
|
454
|
-
version?: number;
|
|
455
451
|
}
|
|
456
452
|
export interface TestUpdateTestCaseDefinitionParams {
|
|
457
453
|
/**
|
|
@@ -463,7 +459,7 @@ export interface TestUpdateTestCaseDefinitionParams {
|
|
|
463
459
|
/**
|
|
464
460
|
* LLM model to use for simulation
|
|
465
461
|
*/
|
|
466
|
-
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash';
|
|
462
|
+
llm_model?: 'gpt-4.1' | 'gpt-4.1-mini' | 'gpt-4.1-nano' | 'gpt-5' | 'gpt-5-mini' | 'gpt-5-nano' | 'gpt-5.1' | 'gpt-5.2' | 'gpt-5.4' | 'gpt-5.4-mini' | 'gpt-5.4-nano' | 'claude-4.5-sonnet' | 'claude-4.6-sonnet' | 'claude-4.5-haiku' | 'gemini-2.5-flash' | 'gemini-2.5-flash-lite' | 'gemini-3.0-flash' | 'gemini-3.1-flash-lite';
|
|
467
463
|
/**
|
|
468
464
|
* Array of metric names to evaluate
|
|
469
465
|
*/
|
package/resources/tests.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tests.d.ts","sourceRoot":"","sources":["../src/resources/tests.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"tests.d.ts","sourceRoot":"","sources":["../src/resources/tests.ts"],"names":[],"mappings":"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"}
|