llama-stack-client 0.2.9 → 0.2.10-rc2

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.
Files changed (53) hide show
  1. package/index.d.mts +1 -1
  2. package/index.d.ts +1 -1
  3. package/index.d.ts.map +1 -1
  4. package/index.js +1 -1
  5. package/index.js.map +1 -1
  6. package/index.mjs +1 -1
  7. package/index.mjs.map +1 -1
  8. package/package.json +1 -1
  9. package/resources/index.d.ts +1 -1
  10. package/resources/index.d.ts.map +1 -1
  11. package/resources/index.js +1 -1
  12. package/resources/index.js.map +1 -1
  13. package/resources/index.mjs +1 -1
  14. package/resources/responses/index.d.ts +3 -0
  15. package/resources/responses/index.d.ts.map +1 -0
  16. package/resources/responses/index.js +9 -0
  17. package/resources/responses/index.js.map +1 -0
  18. package/resources/responses/index.mjs +4 -0
  19. package/resources/responses/index.mjs.map +1 -0
  20. package/resources/responses/input-items.d.ts +93 -0
  21. package/resources/responses/input-items.d.ts.map +1 -0
  22. package/resources/responses/input-items.js +16 -0
  23. package/resources/responses/input-items.js.map +1 -0
  24. package/resources/responses/input-items.mjs +12 -0
  25. package/resources/responses/input-items.mjs.map +1 -0
  26. package/resources/responses/responses.d.ts +416 -0
  27. package/resources/responses/responses.d.ts.map +1 -0
  28. package/resources/responses/responses.js +59 -0
  29. package/resources/responses/responses.js.map +1 -0
  30. package/resources/responses/responses.mjs +32 -0
  31. package/resources/responses/responses.mjs.map +1 -0
  32. package/resources/responses.d.ts +1 -359
  33. package/resources/responses.d.ts.map +1 -1
  34. package/resources/responses.js +15 -25
  35. package/resources/responses.js.map +1 -1
  36. package/resources/responses.mjs +1 -23
  37. package/resources/responses.mjs.map +1 -1
  38. package/resources/tools.d.ts +0 -1
  39. package/resources/tools.d.ts.map +1 -1
  40. package/src/index.ts +10 -10
  41. package/src/resources/index.ts +1 -1
  42. package/src/resources/responses/index.ts +13 -0
  43. package/src/resources/responses/input-items.ts +158 -0
  44. package/src/resources/responses/responses.ts +727 -0
  45. package/src/resources/responses.ts +1 -622
  46. package/src/resources/tools.ts +0 -2
  47. package/src/version.ts +1 -1
  48. package/version.d.ts +1 -1
  49. package/version.d.ts.map +1 -1
  50. package/version.js +1 -1
  51. package/version.js.map +1 -1
  52. package/version.mjs +1 -1
  53. package/version.mjs.map +1 -1
@@ -0,0 +1,727 @@
1
+ // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ import { APIResource } from '../../resource';
4
+ import { isRequestOptions } from '../../core';
5
+ import { APIPromise } from '../../core';
6
+ import * as Core from '../../core';
7
+ import * as ResponsesAPI from './responses';
8
+ import * as InputItemsAPI from './input-items';
9
+ import { InputItemListParams, InputItemListResponse, InputItems } from './input-items';
10
+ import { Stream } from '../../streaming';
11
+
12
+ export class Responses extends APIResource {
13
+ inputItems: InputItemsAPI.InputItems = new InputItemsAPI.InputItems(this._client);
14
+
15
+ /**
16
+ * Create a new OpenAI response.
17
+ */
18
+ create(body: ResponseCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise<ResponseObject>;
19
+ create(
20
+ body: ResponseCreateParamsStreaming,
21
+ options?: Core.RequestOptions,
22
+ ): APIPromise<Stream<ResponseObjectStream>>;
23
+ create(
24
+ body: ResponseCreateParamsBase,
25
+ options?: Core.RequestOptions,
26
+ ): APIPromise<Stream<ResponseObjectStream> | ResponseObject>;
27
+ create(
28
+ body: ResponseCreateParams,
29
+ options?: Core.RequestOptions,
30
+ ): APIPromise<ResponseObject> | APIPromise<Stream<ResponseObjectStream>> {
31
+ return this._client.post('/v1/openai/v1/responses', {
32
+ body,
33
+ ...options,
34
+ stream: body.stream ?? false,
35
+ }) as APIPromise<ResponseObject> | APIPromise<Stream<ResponseObjectStream>>;
36
+ }
37
+
38
+ /**
39
+ * Retrieve an OpenAI response by its ID.
40
+ */
41
+ retrieve(responseId: string, options?: Core.RequestOptions): Core.APIPromise<ResponseObject> {
42
+ return this._client.get(`/v1/openai/v1/responses/${responseId}`, options);
43
+ }
44
+
45
+ /**
46
+ * List all OpenAI responses.
47
+ */
48
+ list(query?: ResponseListParams, options?: Core.RequestOptions): Core.APIPromise<ResponseListResponse>;
49
+ list(options?: Core.RequestOptions): Core.APIPromise<ResponseListResponse>;
50
+ list(
51
+ query: ResponseListParams | Core.RequestOptions = {},
52
+ options?: Core.RequestOptions,
53
+ ): Core.APIPromise<ResponseListResponse> {
54
+ if (isRequestOptions(query)) {
55
+ return this.list({}, query);
56
+ }
57
+ return this._client.get('/v1/openai/v1/responses', { query, ...options });
58
+ }
59
+ }
60
+
61
+ export interface ResponseObject {
62
+ id: string;
63
+
64
+ created_at: number;
65
+
66
+ model: string;
67
+
68
+ object: 'response';
69
+
70
+ output: Array<
71
+ | ResponseObject.OpenAIResponseMessage
72
+ | ResponseObject.OpenAIResponseOutputMessageWebSearchToolCall
73
+ | ResponseObject.OpenAIResponseOutputMessageFunctionToolCall
74
+ | ResponseObject.OpenAIResponseOutputMessageMcpCall
75
+ | ResponseObject.OpenAIResponseOutputMessageMcpListTools
76
+ >;
77
+
78
+ parallel_tool_calls: boolean;
79
+
80
+ status: string;
81
+
82
+ error?: ResponseObject.Error;
83
+
84
+ previous_response_id?: string;
85
+
86
+ temperature?: number;
87
+
88
+ top_p?: number;
89
+
90
+ truncation?: string;
91
+
92
+ user?: string;
93
+ }
94
+
95
+ export namespace ResponseObject {
96
+ /**
97
+ * Corresponds to the various Message types in the Responses API. They are all
98
+ * under one type because the Responses API gives them all the same "type" value,
99
+ * and there is no way to tell them apart in certain scenarios.
100
+ */
101
+ export interface OpenAIResponseMessage {
102
+ content:
103
+ | string
104
+ | Array<
105
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentText
106
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentImage
107
+ >
108
+ | Array<OpenAIResponseMessage.UnionMember2>;
109
+
110
+ role: 'system' | 'developer' | 'user' | 'assistant';
111
+
112
+ type: 'message';
113
+
114
+ id?: string;
115
+
116
+ status?: string;
117
+ }
118
+
119
+ export namespace OpenAIResponseMessage {
120
+ export interface OpenAIResponseInputMessageContentText {
121
+ text: string;
122
+
123
+ type: 'input_text';
124
+ }
125
+
126
+ export interface OpenAIResponseInputMessageContentImage {
127
+ detail: 'low' | 'high' | 'auto';
128
+
129
+ type: 'input_image';
130
+
131
+ image_url?: string;
132
+ }
133
+
134
+ export interface UnionMember2 {
135
+ text: string;
136
+
137
+ type: 'output_text';
138
+ }
139
+ }
140
+
141
+ export interface OpenAIResponseOutputMessageWebSearchToolCall {
142
+ id: string;
143
+
144
+ status: string;
145
+
146
+ type: 'web_search_call';
147
+ }
148
+
149
+ export interface OpenAIResponseOutputMessageFunctionToolCall {
150
+ arguments: string;
151
+
152
+ call_id: string;
153
+
154
+ name: string;
155
+
156
+ type: 'function_call';
157
+
158
+ id?: string;
159
+
160
+ status?: string;
161
+ }
162
+
163
+ export interface OpenAIResponseOutputMessageMcpCall {
164
+ id: string;
165
+
166
+ arguments: string;
167
+
168
+ name: string;
169
+
170
+ server_label: string;
171
+
172
+ type: 'mcp_call';
173
+
174
+ error?: string;
175
+
176
+ output?: string;
177
+ }
178
+
179
+ export interface OpenAIResponseOutputMessageMcpListTools {
180
+ id: string;
181
+
182
+ server_label: string;
183
+
184
+ tools: Array<OpenAIResponseOutputMessageMcpListTools.Tool>;
185
+
186
+ type: 'mcp_list_tools';
187
+ }
188
+
189
+ export namespace OpenAIResponseOutputMessageMcpListTools {
190
+ export interface Tool {
191
+ input_schema: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
192
+
193
+ name: string;
194
+
195
+ description?: string;
196
+ }
197
+ }
198
+
199
+ export interface Error {
200
+ code: string;
201
+
202
+ message: string;
203
+ }
204
+ }
205
+
206
+ export type ResponseObjectStream =
207
+ | ResponseObjectStream.OpenAIResponseObjectStreamResponseCreated
208
+ | ResponseObjectStream.OpenAIResponseObjectStreamResponseOutputTextDelta
209
+ | ResponseObjectStream.OpenAIResponseObjectStreamResponseCompleted;
210
+
211
+ export namespace ResponseObjectStream {
212
+ export interface OpenAIResponseObjectStreamResponseCreated {
213
+ response: ResponsesAPI.ResponseObject;
214
+
215
+ type: 'response.created';
216
+ }
217
+
218
+ export interface OpenAIResponseObjectStreamResponseOutputTextDelta {
219
+ content_index: number;
220
+
221
+ delta: string;
222
+
223
+ item_id: string;
224
+
225
+ output_index: number;
226
+
227
+ sequence_number: number;
228
+
229
+ type: 'response.output_text.delta';
230
+ }
231
+
232
+ export interface OpenAIResponseObjectStreamResponseCompleted {
233
+ response: ResponsesAPI.ResponseObject;
234
+
235
+ type: 'response.completed';
236
+ }
237
+ }
238
+
239
+ export interface ResponseListResponse {
240
+ data: Array<ResponseListResponse.Data>;
241
+
242
+ first_id: string;
243
+
244
+ has_more: boolean;
245
+
246
+ last_id: string;
247
+
248
+ object: 'list';
249
+ }
250
+
251
+ export namespace ResponseListResponse {
252
+ export interface Data {
253
+ id: string;
254
+
255
+ created_at: number;
256
+
257
+ input: Array<
258
+ | Data.OpenAIResponseOutputMessageWebSearchToolCall
259
+ | Data.OpenAIResponseOutputMessageFunctionToolCall
260
+ | Data.OpenAIResponseInputFunctionToolCallOutput
261
+ | Data.OpenAIResponseMessage
262
+ >;
263
+
264
+ model: string;
265
+
266
+ object: 'response';
267
+
268
+ output: Array<
269
+ | Data.OpenAIResponseMessage
270
+ | Data.OpenAIResponseOutputMessageWebSearchToolCall
271
+ | Data.OpenAIResponseOutputMessageFunctionToolCall
272
+ | Data.OpenAIResponseOutputMessageMcpCall
273
+ | Data.OpenAIResponseOutputMessageMcpListTools
274
+ >;
275
+
276
+ parallel_tool_calls: boolean;
277
+
278
+ status: string;
279
+
280
+ error?: Data.Error;
281
+
282
+ previous_response_id?: string;
283
+
284
+ temperature?: number;
285
+
286
+ top_p?: number;
287
+
288
+ truncation?: string;
289
+
290
+ user?: string;
291
+ }
292
+
293
+ export namespace Data {
294
+ export interface OpenAIResponseOutputMessageWebSearchToolCall {
295
+ id: string;
296
+
297
+ status: string;
298
+
299
+ type: 'web_search_call';
300
+ }
301
+
302
+ export interface OpenAIResponseOutputMessageFunctionToolCall {
303
+ arguments: string;
304
+
305
+ call_id: string;
306
+
307
+ name: string;
308
+
309
+ type: 'function_call';
310
+
311
+ id?: string;
312
+
313
+ status?: string;
314
+ }
315
+
316
+ /**
317
+ * This represents the output of a function call that gets passed back to the
318
+ * model.
319
+ */
320
+ export interface OpenAIResponseInputFunctionToolCallOutput {
321
+ call_id: string;
322
+
323
+ output: string;
324
+
325
+ type: 'function_call_output';
326
+
327
+ id?: string;
328
+
329
+ status?: string;
330
+ }
331
+
332
+ /**
333
+ * Corresponds to the various Message types in the Responses API. They are all
334
+ * under one type because the Responses API gives them all the same "type" value,
335
+ * and there is no way to tell them apart in certain scenarios.
336
+ */
337
+ export interface OpenAIResponseMessage {
338
+ content:
339
+ | string
340
+ | Array<
341
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentText
342
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentImage
343
+ >
344
+ | Array<OpenAIResponseMessage.UnionMember2>;
345
+
346
+ role: 'system' | 'developer' | 'user' | 'assistant';
347
+
348
+ type: 'message';
349
+
350
+ id?: string;
351
+
352
+ status?: string;
353
+ }
354
+
355
+ export namespace OpenAIResponseMessage {
356
+ export interface OpenAIResponseInputMessageContentText {
357
+ text: string;
358
+
359
+ type: 'input_text';
360
+ }
361
+
362
+ export interface OpenAIResponseInputMessageContentImage {
363
+ detail: 'low' | 'high' | 'auto';
364
+
365
+ type: 'input_image';
366
+
367
+ image_url?: string;
368
+ }
369
+
370
+ export interface UnionMember2 {
371
+ text: string;
372
+
373
+ type: 'output_text';
374
+ }
375
+ }
376
+
377
+ /**
378
+ * Corresponds to the various Message types in the Responses API. They are all
379
+ * under one type because the Responses API gives them all the same "type" value,
380
+ * and there is no way to tell them apart in certain scenarios.
381
+ */
382
+ export interface OpenAIResponseMessage {
383
+ content:
384
+ | string
385
+ | Array<
386
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentText
387
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentImage
388
+ >
389
+ | Array<OpenAIResponseMessage.UnionMember2>;
390
+
391
+ role: 'system' | 'developer' | 'user' | 'assistant';
392
+
393
+ type: 'message';
394
+
395
+ id?: string;
396
+
397
+ status?: string;
398
+ }
399
+
400
+ export namespace OpenAIResponseMessage {
401
+ export interface OpenAIResponseInputMessageContentText {
402
+ text: string;
403
+
404
+ type: 'input_text';
405
+ }
406
+
407
+ export interface OpenAIResponseInputMessageContentImage {
408
+ detail: 'low' | 'high' | 'auto';
409
+
410
+ type: 'input_image';
411
+
412
+ image_url?: string;
413
+ }
414
+
415
+ export interface UnionMember2 {
416
+ text: string;
417
+
418
+ type: 'output_text';
419
+ }
420
+ }
421
+
422
+ export interface OpenAIResponseOutputMessageWebSearchToolCall {
423
+ id: string;
424
+
425
+ status: string;
426
+
427
+ type: 'web_search_call';
428
+ }
429
+
430
+ export interface OpenAIResponseOutputMessageFunctionToolCall {
431
+ arguments: string;
432
+
433
+ call_id: string;
434
+
435
+ name: string;
436
+
437
+ type: 'function_call';
438
+
439
+ id?: string;
440
+
441
+ status?: string;
442
+ }
443
+
444
+ export interface OpenAIResponseOutputMessageMcpCall {
445
+ id: string;
446
+
447
+ arguments: string;
448
+
449
+ name: string;
450
+
451
+ server_label: string;
452
+
453
+ type: 'mcp_call';
454
+
455
+ error?: string;
456
+
457
+ output?: string;
458
+ }
459
+
460
+ export interface OpenAIResponseOutputMessageMcpListTools {
461
+ id: string;
462
+
463
+ server_label: string;
464
+
465
+ tools: Array<OpenAIResponseOutputMessageMcpListTools.Tool>;
466
+
467
+ type: 'mcp_list_tools';
468
+ }
469
+
470
+ export namespace OpenAIResponseOutputMessageMcpListTools {
471
+ export interface Tool {
472
+ input_schema: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
473
+
474
+ name: string;
475
+
476
+ description?: string;
477
+ }
478
+ }
479
+
480
+ export interface Error {
481
+ code: string;
482
+
483
+ message: string;
484
+ }
485
+ }
486
+ }
487
+
488
+ export type ResponseCreateParams = ResponseCreateParamsNonStreaming | ResponseCreateParamsStreaming;
489
+
490
+ export interface ResponseCreateParamsBase {
491
+ /**
492
+ * Input message(s) to create the response.
493
+ */
494
+ input:
495
+ | string
496
+ | Array<
497
+ | ResponseCreateParams.OpenAIResponseOutputMessageWebSearchToolCall
498
+ | ResponseCreateParams.OpenAIResponseOutputMessageFunctionToolCall
499
+ | ResponseCreateParams.OpenAIResponseInputFunctionToolCallOutput
500
+ | ResponseCreateParams.OpenAIResponseMessage
501
+ >;
502
+
503
+ /**
504
+ * The underlying LLM used for completions.
505
+ */
506
+ model: string;
507
+
508
+ instructions?: string;
509
+
510
+ /**
511
+ * (Optional) if specified, the new response will be a continuation of the previous
512
+ * response. This can be used to easily fork-off new responses from existing
513
+ * responses.
514
+ */
515
+ previous_response_id?: string;
516
+
517
+ store?: boolean;
518
+
519
+ stream?: boolean;
520
+
521
+ temperature?: number;
522
+
523
+ tools?: Array<
524
+ | ResponseCreateParams.OpenAIResponseInputToolWebSearch
525
+ | ResponseCreateParams.OpenAIResponseInputToolFileSearch
526
+ | ResponseCreateParams.OpenAIResponseInputToolFunction
527
+ | ResponseCreateParams.OpenAIResponseInputToolMcp
528
+ >;
529
+ }
530
+
531
+ export namespace ResponseCreateParams {
532
+ export interface OpenAIResponseOutputMessageWebSearchToolCall {
533
+ id: string;
534
+
535
+ status: string;
536
+
537
+ type: 'web_search_call';
538
+ }
539
+
540
+ export interface OpenAIResponseOutputMessageFunctionToolCall {
541
+ arguments: string;
542
+
543
+ call_id: string;
544
+
545
+ name: string;
546
+
547
+ type: 'function_call';
548
+
549
+ id?: string;
550
+
551
+ status?: string;
552
+ }
553
+
554
+ /**
555
+ * This represents the output of a function call that gets passed back to the
556
+ * model.
557
+ */
558
+ export interface OpenAIResponseInputFunctionToolCallOutput {
559
+ call_id: string;
560
+
561
+ output: string;
562
+
563
+ type: 'function_call_output';
564
+
565
+ id?: string;
566
+
567
+ status?: string;
568
+ }
569
+
570
+ /**
571
+ * Corresponds to the various Message types in the Responses API. They are all
572
+ * under one type because the Responses API gives them all the same "type" value,
573
+ * and there is no way to tell them apart in certain scenarios.
574
+ */
575
+ export interface OpenAIResponseMessage {
576
+ content:
577
+ | string
578
+ | Array<
579
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentText
580
+ | OpenAIResponseMessage.OpenAIResponseInputMessageContentImage
581
+ >
582
+ | Array<OpenAIResponseMessage.UnionMember2>;
583
+
584
+ role: 'system' | 'developer' | 'user' | 'assistant';
585
+
586
+ type: 'message';
587
+
588
+ id?: string;
589
+
590
+ status?: string;
591
+ }
592
+
593
+ export namespace OpenAIResponseMessage {
594
+ export interface OpenAIResponseInputMessageContentText {
595
+ text: string;
596
+
597
+ type: 'input_text';
598
+ }
599
+
600
+ export interface OpenAIResponseInputMessageContentImage {
601
+ detail: 'low' | 'high' | 'auto';
602
+
603
+ type: 'input_image';
604
+
605
+ image_url?: string;
606
+ }
607
+
608
+ export interface UnionMember2 {
609
+ text: string;
610
+
611
+ type: 'output_text';
612
+ }
613
+ }
614
+
615
+ export interface OpenAIResponseInputToolWebSearch {
616
+ type: 'web_search' | 'web_search_preview_2025_03_11';
617
+
618
+ search_context_size?: string;
619
+ }
620
+
621
+ export interface OpenAIResponseInputToolFileSearch {
622
+ type: 'file_search';
623
+
624
+ vector_store_id: Array<string>;
625
+
626
+ ranking_options?: OpenAIResponseInputToolFileSearch.RankingOptions;
627
+ }
628
+
629
+ export namespace OpenAIResponseInputToolFileSearch {
630
+ export interface RankingOptions {
631
+ ranker?: string;
632
+
633
+ score_threshold?: number;
634
+ }
635
+ }
636
+
637
+ export interface OpenAIResponseInputToolFunction {
638
+ name: string;
639
+
640
+ type: 'function';
641
+
642
+ description?: string;
643
+
644
+ parameters?: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
645
+
646
+ strict?: boolean;
647
+ }
648
+
649
+ export interface OpenAIResponseInputToolMcp {
650
+ require_approval: 'always' | 'never' | OpenAIResponseInputToolMcp.ApprovalFilter;
651
+
652
+ server_label: string;
653
+
654
+ server_url: string;
655
+
656
+ type: 'mcp';
657
+
658
+ allowed_tools?: Array<string> | OpenAIResponseInputToolMcp.AllowedToolsFilter;
659
+
660
+ headers?: Record<string, boolean | number | string | Array<unknown> | unknown | null>;
661
+ }
662
+
663
+ export namespace OpenAIResponseInputToolMcp {
664
+ export interface ApprovalFilter {
665
+ always?: Array<string>;
666
+
667
+ never?: Array<string>;
668
+ }
669
+
670
+ export interface AllowedToolsFilter {
671
+ tool_names?: Array<string>;
672
+ }
673
+ }
674
+
675
+ export type ResponseCreateParamsNonStreaming = ResponsesAPI.ResponseCreateParamsNonStreaming;
676
+ export type ResponseCreateParamsStreaming = ResponsesAPI.ResponseCreateParamsStreaming;
677
+ }
678
+
679
+ export interface ResponseCreateParamsNonStreaming extends ResponseCreateParamsBase {
680
+ stream?: false;
681
+ }
682
+
683
+ export interface ResponseCreateParamsStreaming extends ResponseCreateParamsBase {
684
+ stream: true;
685
+ }
686
+
687
+ export interface ResponseListParams {
688
+ /**
689
+ * The ID of the last response to return.
690
+ */
691
+ after?: string;
692
+
693
+ /**
694
+ * The number of responses to return.
695
+ */
696
+ limit?: number;
697
+
698
+ /**
699
+ * The model to filter responses by.
700
+ */
701
+ model?: string;
702
+
703
+ /**
704
+ * The order to sort responses by when sorted by created_at ('asc' or 'desc').
705
+ */
706
+ order?: 'asc' | 'desc';
707
+ }
708
+
709
+ Responses.InputItems = InputItems;
710
+
711
+ export declare namespace Responses {
712
+ export {
713
+ type ResponseObject as ResponseObject,
714
+ type ResponseObjectStream as ResponseObjectStream,
715
+ type ResponseListResponse as ResponseListResponse,
716
+ type ResponseCreateParams as ResponseCreateParams,
717
+ type ResponseCreateParamsNonStreaming as ResponseCreateParamsNonStreaming,
718
+ type ResponseCreateParamsStreaming as ResponseCreateParamsStreaming,
719
+ type ResponseListParams as ResponseListParams,
720
+ };
721
+
722
+ export {
723
+ InputItems as InputItems,
724
+ type InputItemListResponse as InputItemListResponse,
725
+ type InputItemListParams as InputItemListParams,
726
+ };
727
+ }