hume 0.6.3 → 0.6.4

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 (97) hide show
  1. package/.mock/definition/empathic-voice/__package__.yml +130 -38
  2. package/.mock/definition/empathic-voice/chat.yml +1 -1
  3. package/.mock/definition/empathic-voice/chatGroups.yml +2 -2
  4. package/.mock/definition/empathic-voice/chats.yml +5 -2
  5. package/.mock/definition/empathic-voice/configs.yml +93 -77
  6. package/.mock/definition/empathic-voice/prompts.yml +9 -9
  7. package/.mock/definition/empathic-voice/tools.yml +9 -9
  8. package/.mock/definition/expression-measurement/batch.yml +0 -15
  9. package/.mock/fern.config.json +1 -1
  10. package/api/resources/customModels/resources/datasets/client/Client.js +9 -9
  11. package/api/resources/customModels/resources/files/client/Client.js +7 -7
  12. package/api/resources/customModels/resources/jobs/client/Client.js +2 -2
  13. package/api/resources/customModels/resources/models/client/Client.js +6 -6
  14. package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +2 -2
  15. package/api/resources/empathicVoice/resources/chats/client/Client.js +6 -3
  16. package/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +4 -0
  17. package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  18. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -4
  19. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -4
  20. package/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
  21. package/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
  22. package/api/resources/empathicVoice/types/AssistantEnd.d.ts +1 -0
  23. package/api/resources/empathicVoice/types/AssistantInput.d.ts +1 -0
  24. package/api/resources/empathicVoice/types/AssistantMessage.d.ts +1 -0
  25. package/api/resources/empathicVoice/types/AudioInput.d.ts +1 -0
  26. package/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -0
  27. package/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -0
  28. package/api/resources/empathicVoice/types/ChatMetadata.d.ts +1 -0
  29. package/api/resources/empathicVoice/types/Inference.d.ts +1 -0
  30. package/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -0
  31. package/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -0
  32. package/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -4
  33. package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  34. package/api/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +1 -1
  35. package/api/resources/empathicVoice/types/SessionSettings.d.ts +6 -0
  36. package/api/resources/empathicVoice/types/Tool.d.ts +2 -0
  37. package/api/resources/empathicVoice/types/ToolCallMessage.d.ts +1 -0
  38. package/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +5 -0
  39. package/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +1 -0
  40. package/api/resources/empathicVoice/types/UserInput.d.ts +1 -0
  41. package/api/resources/empathicVoice/types/UserInterruption.d.ts +1 -0
  42. package/api/resources/empathicVoice/types/UserMessage.d.ts +1 -0
  43. package/api/resources/empathicVoice/types/WebSocketError.d.ts +1 -0
  44. package/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
  45. package/dist/api/resources/customModels/resources/datasets/client/Client.js +9 -9
  46. package/dist/api/resources/customModels/resources/files/client/Client.js +7 -7
  47. package/dist/api/resources/customModels/resources/jobs/client/Client.js +2 -2
  48. package/dist/api/resources/customModels/resources/models/client/Client.js +6 -6
  49. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +2 -2
  50. package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +6 -3
  51. package/dist/api/resources/empathicVoice/resources/chats/client/requests/ChatsListChatsRequest.d.ts +4 -0
  52. package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  53. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -4
  54. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -4
  55. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
  56. package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
  57. package/dist/api/resources/empathicVoice/types/AssistantEnd.d.ts +1 -0
  58. package/dist/api/resources/empathicVoice/types/AssistantInput.d.ts +1 -0
  59. package/dist/api/resources/empathicVoice/types/AssistantMessage.d.ts +1 -0
  60. package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +1 -0
  61. package/dist/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -0
  62. package/dist/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -0
  63. package/dist/api/resources/empathicVoice/types/ChatMetadata.d.ts +1 -0
  64. package/dist/api/resources/empathicVoice/types/Inference.d.ts +1 -0
  65. package/dist/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -0
  66. package/dist/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -0
  67. package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -4
  68. package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  69. package/dist/api/resources/empathicVoice/types/ReturnUserDefinedTool.d.ts +1 -1
  70. package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +6 -0
  71. package/dist/api/resources/empathicVoice/types/Tool.d.ts +2 -0
  72. package/dist/api/resources/empathicVoice/types/ToolCallMessage.d.ts +1 -0
  73. package/dist/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +5 -0
  74. package/dist/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +1 -0
  75. package/dist/api/resources/empathicVoice/types/UserInput.d.ts +1 -0
  76. package/dist/api/resources/empathicVoice/types/UserInterruption.d.ts +1 -0
  77. package/dist/api/resources/empathicVoice/types/UserMessage.d.ts +1 -0
  78. package/dist/api/resources/empathicVoice/types/WebSocketError.d.ts +1 -0
  79. package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
  80. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -2
  81. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +2 -2
  82. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -2
  83. package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +2 -2
  84. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
  85. package/dist/serialization/resources/empathicVoice/types/ReturnConfig.js +2 -2
  86. package/dist/wrapper/empathicVoice/chat/ChatClient.d.ts +0 -2
  87. package/dist/wrapper/empathicVoice/chat/ChatClient.js +0 -3
  88. package/package.json +1 -1
  89. package/reference.md +4893 -0
  90. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -2
  91. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +2 -2
  92. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -2
  93. package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +2 -2
  94. package/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
  95. package/serialization/resources/empathicVoice/types/ReturnConfig.js +2 -2
  96. package/wrapper/empathicVoice/chat/ChatClient.d.ts +0 -2
  97. package/wrapper/empathicVoice/chat/ChatClient.js +0 -3
package/reference.md ADDED
@@ -0,0 +1,4893 @@
1
+ ## CustomModels Files
2
+
3
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">listFiles</a>({ ...params }) -> Hume.FilePage</code> </summary>
4
+
5
+ <dl>
6
+
7
+ <dd>
8
+
9
+ #### 📝 Description
10
+
11
+ <dl>
12
+
13
+ <dd>
14
+
15
+ <dl>
16
+
17
+ <dd>
18
+
19
+ Returns 200 if successful
20
+
21
+ </dd>
22
+
23
+ </dl>
24
+
25
+ </dd>
26
+
27
+ </dl>
28
+
29
+ #### 🔌 Usage
30
+
31
+ <dl>
32
+
33
+ <dd>
34
+
35
+ <dl>
36
+
37
+ <dd>
38
+
39
+ ```ts
40
+ await hume.customModels.files.listFiles();
41
+ ```
42
+
43
+ </dd>
44
+
45
+ </dl>
46
+
47
+ </dd>
48
+
49
+ </dl>
50
+
51
+ #### ⚙️ Parameters
52
+
53
+ <dl>
54
+
55
+ <dd>
56
+
57
+ <dl>
58
+
59
+ <dd>
60
+
61
+ **request: `Hume.customModels.FilesListFilesRequest`**
62
+
63
+ </dd>
64
+
65
+ </dl>
66
+
67
+ <dl>
68
+
69
+ <dd>
70
+
71
+ **requestOptions: `Files.RequestOptions`**
72
+
73
+ </dd>
74
+
75
+ </dl>
76
+
77
+ </dd>
78
+
79
+ </dl>
80
+
81
+ </dd>
82
+
83
+ </dl>
84
+ </details>
85
+
86
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">createFiles</a>({ ...params }) -> Hume.FileWithAttributes[]</code> </summary>
87
+
88
+ <dl>
89
+
90
+ <dd>
91
+
92
+ #### 📝 Description
93
+
94
+ <dl>
95
+
96
+ <dd>
97
+
98
+ <dl>
99
+
100
+ <dd>
101
+
102
+ Returns 201 if successful
103
+
104
+ </dd>
105
+
106
+ </dl>
107
+
108
+ </dd>
109
+
110
+ </dl>
111
+
112
+ #### 🔌 Usage
113
+
114
+ <dl>
115
+
116
+ <dd>
117
+
118
+ <dl>
119
+
120
+ <dd>
121
+
122
+ ```ts
123
+ await hume.customModels.files.createFiles([
124
+ {
125
+ file: {
126
+ name: "name",
127
+ humeStorage: true,
128
+ dataType: "data_type",
129
+ },
130
+ },
131
+ ]);
132
+ ```
133
+
134
+ </dd>
135
+
136
+ </dl>
137
+
138
+ </dd>
139
+
140
+ </dl>
141
+
142
+ #### ⚙️ Parameters
143
+
144
+ <dl>
145
+
146
+ <dd>
147
+
148
+ <dl>
149
+
150
+ <dd>
151
+
152
+ **request: `Hume.FileWithAttributesInput[]`**
153
+
154
+ </dd>
155
+
156
+ </dl>
157
+
158
+ <dl>
159
+
160
+ <dd>
161
+
162
+ **requestOptions: `Files.RequestOptions`**
163
+
164
+ </dd>
165
+
166
+ </dl>
167
+
168
+ </dd>
169
+
170
+ </dl>
171
+
172
+ </dd>
173
+
174
+ </dl>
175
+ </details>
176
+
177
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">uploadFile</a>(file, attributes) -> Hume.FileWithAttributes</code> </summary>
178
+
179
+ <dl>
180
+
181
+ <dd>
182
+
183
+ #### 📝 Description
184
+
185
+ <dl>
186
+
187
+ <dd>
188
+
189
+ <dl>
190
+
191
+ <dd>
192
+
193
+ Upload a file synchronously. Returns 201 if successful. Files must have a name. Files must specify Content-Type. Request bodies, and therefore files, are limited to 100MB
194
+
195
+ </dd>
196
+
197
+ </dl>
198
+
199
+ </dd>
200
+
201
+ </dl>
202
+
203
+ #### 🔌 Usage
204
+
205
+ <dl>
206
+
207
+ <dd>
208
+
209
+ <dl>
210
+
211
+ <dd>
212
+
213
+ ```ts
214
+ await hume.customModels.files.uploadFile(
215
+ fs.createReadStream("/path/to/your/file"),
216
+ fs.createReadStream("/path/to/your/file")
217
+ );
218
+ ```
219
+
220
+ </dd>
221
+
222
+ </dl>
223
+
224
+ </dd>
225
+
226
+ </dl>
227
+
228
+ #### ⚙️ Parameters
229
+
230
+ <dl>
231
+
232
+ <dd>
233
+
234
+ <dl>
235
+
236
+ <dd>
237
+
238
+ **file: `File | fs.ReadStream`**
239
+
240
+ </dd>
241
+
242
+ </dl>
243
+
244
+ <dl>
245
+
246
+ <dd>
247
+
248
+ **attributes: `File | fs.ReadStream | undefined`**
249
+
250
+ </dd>
251
+
252
+ </dl>
253
+
254
+ <dl>
255
+
256
+ <dd>
257
+
258
+ **requestOptions: `Files.RequestOptions`**
259
+
260
+ </dd>
261
+
262
+ </dl>
263
+
264
+ </dd>
265
+
266
+ </dl>
267
+
268
+ </dd>
269
+
270
+ </dl>
271
+ </details>
272
+
273
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">getFile</a>(id) -> Hume.FileWithAttributes</code> </summary>
274
+
275
+ <dl>
276
+
277
+ <dd>
278
+
279
+ #### 📝 Description
280
+
281
+ <dl>
282
+
283
+ <dd>
284
+
285
+ <dl>
286
+
287
+ <dd>
288
+
289
+ Returns 200 if successful
290
+
291
+ </dd>
292
+
293
+ </dl>
294
+
295
+ </dd>
296
+
297
+ </dl>
298
+
299
+ #### 🔌 Usage
300
+
301
+ <dl>
302
+
303
+ <dd>
304
+
305
+ <dl>
306
+
307
+ <dd>
308
+
309
+ ```ts
310
+ await hume.customModels.files.getFile("id");
311
+ ```
312
+
313
+ </dd>
314
+
315
+ </dl>
316
+
317
+ </dd>
318
+
319
+ </dl>
320
+
321
+ #### ⚙️ Parameters
322
+
323
+ <dl>
324
+
325
+ <dd>
326
+
327
+ <dl>
328
+
329
+ <dd>
330
+
331
+ **id: `string`** — Hume-generated ID of a File
332
+
333
+ </dd>
334
+
335
+ </dl>
336
+
337
+ <dl>
338
+
339
+ <dd>
340
+
341
+ **requestOptions: `Files.RequestOptions`**
342
+
343
+ </dd>
344
+
345
+ </dl>
346
+
347
+ </dd>
348
+
349
+ </dl>
350
+
351
+ </dd>
352
+
353
+ </dl>
354
+ </details>
355
+
356
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">deleteFile</a>(id) -> void</code> </summary>
357
+
358
+ <dl>
359
+
360
+ <dd>
361
+
362
+ #### 📝 Description
363
+
364
+ <dl>
365
+
366
+ <dd>
367
+
368
+ <dl>
369
+
370
+ <dd>
371
+
372
+ Returns 204 if successful
373
+
374
+ </dd>
375
+
376
+ </dl>
377
+
378
+ </dd>
379
+
380
+ </dl>
381
+
382
+ #### 🔌 Usage
383
+
384
+ <dl>
385
+
386
+ <dd>
387
+
388
+ <dl>
389
+
390
+ <dd>
391
+
392
+ ```ts
393
+ await hume.customModels.files.deleteFile("id");
394
+ ```
395
+
396
+ </dd>
397
+
398
+ </dl>
399
+
400
+ </dd>
401
+
402
+ </dl>
403
+
404
+ #### ⚙️ Parameters
405
+
406
+ <dl>
407
+
408
+ <dd>
409
+
410
+ <dl>
411
+
412
+ <dd>
413
+
414
+ **id: `string`** — Hume-generated ID of a File
415
+
416
+ </dd>
417
+
418
+ </dl>
419
+
420
+ <dl>
421
+
422
+ <dd>
423
+
424
+ **requestOptions: `Files.RequestOptions`**
425
+
426
+ </dd>
427
+
428
+ </dl>
429
+
430
+ </dd>
431
+
432
+ </dl>
433
+
434
+ </dd>
435
+
436
+ </dl>
437
+ </details>
438
+
439
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">updateFileName</a>(id, { ...params }) -> Hume.FileWithAttributes</code> </summary>
440
+
441
+ <dl>
442
+
443
+ <dd>
444
+
445
+ #### 📝 Description
446
+
447
+ <dl>
448
+
449
+ <dd>
450
+
451
+ <dl>
452
+
453
+ <dd>
454
+
455
+ Returns 200 if successful
456
+
457
+ </dd>
458
+
459
+ </dl>
460
+
461
+ </dd>
462
+
463
+ </dl>
464
+
465
+ #### 🔌 Usage
466
+
467
+ <dl>
468
+
469
+ <dd>
470
+
471
+ <dl>
472
+
473
+ <dd>
474
+
475
+ ```ts
476
+ await hume.customModels.files.updateFileName("id", {
477
+ name: "name",
478
+ });
479
+ ```
480
+
481
+ </dd>
482
+
483
+ </dl>
484
+
485
+ </dd>
486
+
487
+ </dl>
488
+
489
+ #### ⚙️ Parameters
490
+
491
+ <dl>
492
+
493
+ <dd>
494
+
495
+ <dl>
496
+
497
+ <dd>
498
+
499
+ **id: `string`** — Hume-generated ID of a File
500
+
501
+ </dd>
502
+
503
+ </dl>
504
+
505
+ <dl>
506
+
507
+ <dd>
508
+
509
+ **request: `Hume.customModels.FilesUpdateFileNameRequest`**
510
+
511
+ </dd>
512
+
513
+ </dl>
514
+
515
+ <dl>
516
+
517
+ <dd>
518
+
519
+ **requestOptions: `Files.RequestOptions`**
520
+
521
+ </dd>
522
+
523
+ </dl>
524
+
525
+ </dd>
526
+
527
+ </dl>
528
+
529
+ </dd>
530
+
531
+ </dl>
532
+ </details>
533
+
534
+ <details><summary> <code>hume.customModels.files.<a href="./src/api/resources/customModels/resources/files/client/Client.ts">getFilePredictions</a>(id) -> void</code> </summary>
535
+
536
+ <dl>
537
+
538
+ <dd>
539
+
540
+ #### 📝 Description
541
+
542
+ <dl>
543
+
544
+ <dd>
545
+
546
+ <dl>
547
+
548
+ <dd>
549
+
550
+ Returns 200 if successful
551
+
552
+ </dd>
553
+
554
+ </dl>
555
+
556
+ </dd>
557
+
558
+ </dl>
559
+
560
+ #### 🔌 Usage
561
+
562
+ <dl>
563
+
564
+ <dd>
565
+
566
+ <dl>
567
+
568
+ <dd>
569
+
570
+ ```ts
571
+ await hume.customModels.files.getFilePredictions("id");
572
+ ```
573
+
574
+ </dd>
575
+
576
+ </dl>
577
+
578
+ </dd>
579
+
580
+ </dl>
581
+
582
+ #### ⚙️ Parameters
583
+
584
+ <dl>
585
+
586
+ <dd>
587
+
588
+ <dl>
589
+
590
+ <dd>
591
+
592
+ **id: `string`** — Hume-generated ID of a File
593
+
594
+ </dd>
595
+
596
+ </dl>
597
+
598
+ <dl>
599
+
600
+ <dd>
601
+
602
+ **requestOptions: `Files.RequestOptions`**
603
+
604
+ </dd>
605
+
606
+ </dl>
607
+
608
+ </dd>
609
+
610
+ </dl>
611
+
612
+ </dd>
613
+
614
+ </dl>
615
+ </details>
616
+
617
+ ## CustomModels Datasets
618
+
619
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">listDatasets</a>({ ...params }) -> Hume.DatasetPage</code> </summary>
620
+
621
+ <dl>
622
+
623
+ <dd>
624
+
625
+ #### 📝 Description
626
+
627
+ <dl>
628
+
629
+ <dd>
630
+
631
+ <dl>
632
+
633
+ <dd>
634
+
635
+ Returns 200 if successful
636
+
637
+ </dd>
638
+
639
+ </dl>
640
+
641
+ </dd>
642
+
643
+ </dl>
644
+
645
+ #### 🔌 Usage
646
+
647
+ <dl>
648
+
649
+ <dd>
650
+
651
+ <dl>
652
+
653
+ <dd>
654
+
655
+ ```ts
656
+ await hume.customModels.datasets.listDatasets();
657
+ ```
658
+
659
+ </dd>
660
+
661
+ </dl>
662
+
663
+ </dd>
664
+
665
+ </dl>
666
+
667
+ #### ⚙️ Parameters
668
+
669
+ <dl>
670
+
671
+ <dd>
672
+
673
+ <dl>
674
+
675
+ <dd>
676
+
677
+ **request: `Hume.customModels.DatasetsListDatasetsRequest`**
678
+
679
+ </dd>
680
+
681
+ </dl>
682
+
683
+ <dl>
684
+
685
+ <dd>
686
+
687
+ **requestOptions: `Datasets.RequestOptions`**
688
+
689
+ </dd>
690
+
691
+ </dl>
692
+
693
+ </dd>
694
+
695
+ </dl>
696
+
697
+ </dd>
698
+
699
+ </dl>
700
+ </details>
701
+
702
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">createDataset</a>(featureTypes, labelsFile, { ...params }) -> Hume.ReturnDataset</code> </summary>
703
+
704
+ <dl>
705
+
706
+ <dd>
707
+
708
+ #### 📝 Description
709
+
710
+ <dl>
711
+
712
+ <dd>
713
+
714
+ <dl>
715
+
716
+ <dd>
717
+
718
+ Returns 201 if successful
719
+
720
+ </dd>
721
+
722
+ </dl>
723
+
724
+ </dd>
725
+
726
+ </dl>
727
+
728
+ #### 🔌 Usage
729
+
730
+ <dl>
731
+
732
+ <dd>
733
+
734
+ <dl>
735
+
736
+ <dd>
737
+
738
+ ```ts
739
+ await hume.customModels.datasets.createDataset(
740
+ fs.createReadStream("/path/to/your/file"),
741
+ fs.createReadStream("/path/to/your/file"),
742
+ {
743
+ name: "name",
744
+ }
745
+ );
746
+ ```
747
+
748
+ </dd>
749
+
750
+ </dl>
751
+
752
+ </dd>
753
+
754
+ </dl>
755
+
756
+ #### ⚙️ Parameters
757
+
758
+ <dl>
759
+
760
+ <dd>
761
+
762
+ <dl>
763
+
764
+ <dd>
765
+
766
+ **featureTypes: `File | fs.ReadStream | undefined`**
767
+
768
+ </dd>
769
+
770
+ </dl>
771
+
772
+ <dl>
773
+
774
+ <dd>
775
+
776
+ **labelsFile: `File | fs.ReadStream`**
777
+
778
+ </dd>
779
+
780
+ </dl>
781
+
782
+ <dl>
783
+
784
+ <dd>
785
+
786
+ **request: `Hume.customModels.DatasetsCreateDatasetRequest`**
787
+
788
+ </dd>
789
+
790
+ </dl>
791
+
792
+ <dl>
793
+
794
+ <dd>
795
+
796
+ **requestOptions: `Datasets.RequestOptions`**
797
+
798
+ </dd>
799
+
800
+ </dl>
801
+
802
+ </dd>
803
+
804
+ </dl>
805
+
806
+ </dd>
807
+
808
+ </dl>
809
+ </details>
810
+
811
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">getDataset</a>(id) -> Hume.ReturnDataset</code> </summary>
812
+
813
+ <dl>
814
+
815
+ <dd>
816
+
817
+ #### 📝 Description
818
+
819
+ <dl>
820
+
821
+ <dd>
822
+
823
+ <dl>
824
+
825
+ <dd>
826
+
827
+ Returns 200 if successful
828
+
829
+ </dd>
830
+
831
+ </dl>
832
+
833
+ </dd>
834
+
835
+ </dl>
836
+
837
+ #### 🔌 Usage
838
+
839
+ <dl>
840
+
841
+ <dd>
842
+
843
+ <dl>
844
+
845
+ <dd>
846
+
847
+ ```ts
848
+ await hume.customModels.datasets.getDataset("id");
849
+ ```
850
+
851
+ </dd>
852
+
853
+ </dl>
854
+
855
+ </dd>
856
+
857
+ </dl>
858
+
859
+ #### ⚙️ Parameters
860
+
861
+ <dl>
862
+
863
+ <dd>
864
+
865
+ <dl>
866
+
867
+ <dd>
868
+
869
+ **id: `string`** — Hume-generated ID of a Dataset
870
+
871
+ </dd>
872
+
873
+ </dl>
874
+
875
+ <dl>
876
+
877
+ <dd>
878
+
879
+ **requestOptions: `Datasets.RequestOptions`**
880
+
881
+ </dd>
882
+
883
+ </dl>
884
+
885
+ </dd>
886
+
887
+ </dl>
888
+
889
+ </dd>
890
+
891
+ </dl>
892
+ </details>
893
+
894
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">createDatasetVersion</a>(featureTypes, labelsFile, id) -> Hume.ReturnDataset[]</code> </summary>
895
+
896
+ <dl>
897
+
898
+ <dd>
899
+
900
+ #### 📝 Description
901
+
902
+ <dl>
903
+
904
+ <dd>
905
+
906
+ <dl>
907
+
908
+ <dd>
909
+
910
+ Returns 200 if successful
911
+
912
+ </dd>
913
+
914
+ </dl>
915
+
916
+ </dd>
917
+
918
+ </dl>
919
+
920
+ #### 🔌 Usage
921
+
922
+ <dl>
923
+
924
+ <dd>
925
+
926
+ <dl>
927
+
928
+ <dd>
929
+
930
+ ```ts
931
+ await hume.customModels.datasets.createDatasetVersion(
932
+ fs.createReadStream("/path/to/your/file"),
933
+ fs.createReadStream("/path/to/your/file"),
934
+ "id"
935
+ );
936
+ ```
937
+
938
+ </dd>
939
+
940
+ </dl>
941
+
942
+ </dd>
943
+
944
+ </dl>
945
+
946
+ #### ⚙️ Parameters
947
+
948
+ <dl>
949
+
950
+ <dd>
951
+
952
+ <dl>
953
+
954
+ <dd>
955
+
956
+ **featureTypes: `File | fs.ReadStream | undefined`**
957
+
958
+ </dd>
959
+
960
+ </dl>
961
+
962
+ <dl>
963
+
964
+ <dd>
965
+
966
+ **labelsFile: `File | fs.ReadStream`**
967
+
968
+ </dd>
969
+
970
+ </dl>
971
+
972
+ <dl>
973
+
974
+ <dd>
975
+
976
+ **id: `string`**
977
+
978
+ </dd>
979
+
980
+ </dl>
981
+
982
+ <dl>
983
+
984
+ <dd>
985
+
986
+ **requestOptions: `Datasets.RequestOptions`**
987
+
988
+ </dd>
989
+
990
+ </dl>
991
+
992
+ </dd>
993
+
994
+ </dl>
995
+
996
+ </dd>
997
+
998
+ </dl>
999
+ </details>
1000
+
1001
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">deleteDataset</a>(id) -> void</code> </summary>
1002
+
1003
+ <dl>
1004
+
1005
+ <dd>
1006
+
1007
+ #### 📝 Description
1008
+
1009
+ <dl>
1010
+
1011
+ <dd>
1012
+
1013
+ <dl>
1014
+
1015
+ <dd>
1016
+
1017
+ Returns 204 if successful
1018
+
1019
+ </dd>
1020
+
1021
+ </dl>
1022
+
1023
+ </dd>
1024
+
1025
+ </dl>
1026
+
1027
+ #### 🔌 Usage
1028
+
1029
+ <dl>
1030
+
1031
+ <dd>
1032
+
1033
+ <dl>
1034
+
1035
+ <dd>
1036
+
1037
+ ```ts
1038
+ await hume.customModels.datasets.deleteDataset("id");
1039
+ ```
1040
+
1041
+ </dd>
1042
+
1043
+ </dl>
1044
+
1045
+ </dd>
1046
+
1047
+ </dl>
1048
+
1049
+ #### ⚙️ Parameters
1050
+
1051
+ <dl>
1052
+
1053
+ <dd>
1054
+
1055
+ <dl>
1056
+
1057
+ <dd>
1058
+
1059
+ **id: `string`** — Hume-generated ID of a Dataset
1060
+
1061
+ </dd>
1062
+
1063
+ </dl>
1064
+
1065
+ <dl>
1066
+
1067
+ <dd>
1068
+
1069
+ **requestOptions: `Datasets.RequestOptions`**
1070
+
1071
+ </dd>
1072
+
1073
+ </dl>
1074
+
1075
+ </dd>
1076
+
1077
+ </dl>
1078
+
1079
+ </dd>
1080
+
1081
+ </dl>
1082
+ </details>
1083
+
1084
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">listDatasetVersions</a>(id, { ...params }) -> Hume.DatasetVersionPage</code> </summary>
1085
+
1086
+ <dl>
1087
+
1088
+ <dd>
1089
+
1090
+ #### 📝 Description
1091
+
1092
+ <dl>
1093
+
1094
+ <dd>
1095
+
1096
+ <dl>
1097
+
1098
+ <dd>
1099
+
1100
+ Returns 200 if successful
1101
+
1102
+ </dd>
1103
+
1104
+ </dl>
1105
+
1106
+ </dd>
1107
+
1108
+ </dl>
1109
+
1110
+ #### 🔌 Usage
1111
+
1112
+ <dl>
1113
+
1114
+ <dd>
1115
+
1116
+ <dl>
1117
+
1118
+ <dd>
1119
+
1120
+ ```ts
1121
+ await hume.customModels.datasets.listDatasetVersions("id");
1122
+ ```
1123
+
1124
+ </dd>
1125
+
1126
+ </dl>
1127
+
1128
+ </dd>
1129
+
1130
+ </dl>
1131
+
1132
+ #### ⚙️ Parameters
1133
+
1134
+ <dl>
1135
+
1136
+ <dd>
1137
+
1138
+ <dl>
1139
+
1140
+ <dd>
1141
+
1142
+ **id: `string`** — Hume-generated ID of a Dataset
1143
+
1144
+ </dd>
1145
+
1146
+ </dl>
1147
+
1148
+ <dl>
1149
+
1150
+ <dd>
1151
+
1152
+ **request: `Hume.customModels.DatasetsListDatasetVersionsRequest`**
1153
+
1154
+ </dd>
1155
+
1156
+ </dl>
1157
+
1158
+ <dl>
1159
+
1160
+ <dd>
1161
+
1162
+ **requestOptions: `Datasets.RequestOptions`**
1163
+
1164
+ </dd>
1165
+
1166
+ </dl>
1167
+
1168
+ </dd>
1169
+
1170
+ </dl>
1171
+
1172
+ </dd>
1173
+
1174
+ </dl>
1175
+ </details>
1176
+
1177
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">listDatasetFiles</a>(id, { ...params }) -> Hume.FilePage[]</code> </summary>
1178
+
1179
+ <dl>
1180
+
1181
+ <dd>
1182
+
1183
+ #### 📝 Description
1184
+
1185
+ <dl>
1186
+
1187
+ <dd>
1188
+
1189
+ <dl>
1190
+
1191
+ <dd>
1192
+
1193
+ Returns 200 if successful
1194
+
1195
+ </dd>
1196
+
1197
+ </dl>
1198
+
1199
+ </dd>
1200
+
1201
+ </dl>
1202
+
1203
+ #### 🔌 Usage
1204
+
1205
+ <dl>
1206
+
1207
+ <dd>
1208
+
1209
+ <dl>
1210
+
1211
+ <dd>
1212
+
1213
+ ```ts
1214
+ await hume.customModels.datasets.listDatasetFiles("id");
1215
+ ```
1216
+
1217
+ </dd>
1218
+
1219
+ </dl>
1220
+
1221
+ </dd>
1222
+
1223
+ </dl>
1224
+
1225
+ #### ⚙️ Parameters
1226
+
1227
+ <dl>
1228
+
1229
+ <dd>
1230
+
1231
+ <dl>
1232
+
1233
+ <dd>
1234
+
1235
+ **id: `string`** — Hume-generated ID of a Dataset
1236
+
1237
+ </dd>
1238
+
1239
+ </dl>
1240
+
1241
+ <dl>
1242
+
1243
+ <dd>
1244
+
1245
+ **request: `Hume.customModels.DatasetsListDatasetFilesRequest`**
1246
+
1247
+ </dd>
1248
+
1249
+ </dl>
1250
+
1251
+ <dl>
1252
+
1253
+ <dd>
1254
+
1255
+ **requestOptions: `Datasets.RequestOptions`**
1256
+
1257
+ </dd>
1258
+
1259
+ </dl>
1260
+
1261
+ </dd>
1262
+
1263
+ </dl>
1264
+
1265
+ </dd>
1266
+
1267
+ </dl>
1268
+ </details>
1269
+
1270
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">getDatasetVersion</a>(id) -> Hume.DatasetLabels</code> </summary>
1271
+
1272
+ <dl>
1273
+
1274
+ <dd>
1275
+
1276
+ #### 📝 Description
1277
+
1278
+ <dl>
1279
+
1280
+ <dd>
1281
+
1282
+ <dl>
1283
+
1284
+ <dd>
1285
+
1286
+ Returns 200 if successful
1287
+
1288
+ </dd>
1289
+
1290
+ </dl>
1291
+
1292
+ </dd>
1293
+
1294
+ </dl>
1295
+
1296
+ #### 🔌 Usage
1297
+
1298
+ <dl>
1299
+
1300
+ <dd>
1301
+
1302
+ <dl>
1303
+
1304
+ <dd>
1305
+
1306
+ ```ts
1307
+ await hume.customModels.datasets.getDatasetVersion("id");
1308
+ ```
1309
+
1310
+ </dd>
1311
+
1312
+ </dl>
1313
+
1314
+ </dd>
1315
+
1316
+ </dl>
1317
+
1318
+ #### ⚙️ Parameters
1319
+
1320
+ <dl>
1321
+
1322
+ <dd>
1323
+
1324
+ <dl>
1325
+
1326
+ <dd>
1327
+
1328
+ **id: `string`** — Hume-generated ID of a Dataset version
1329
+
1330
+ </dd>
1331
+
1332
+ </dl>
1333
+
1334
+ <dl>
1335
+
1336
+ <dd>
1337
+
1338
+ **requestOptions: `Datasets.RequestOptions`**
1339
+
1340
+ </dd>
1341
+
1342
+ </dl>
1343
+
1344
+ </dd>
1345
+
1346
+ </dl>
1347
+
1348
+ </dd>
1349
+
1350
+ </dl>
1351
+ </details>
1352
+
1353
+ <details><summary> <code>hume.customModels.datasets.<a href="./src/api/resources/customModels/resources/datasets/client/Client.ts">listDatasetVersionFiles</a>(id, { ...params }) -> Hume.FilePage[]</code> </summary>
1354
+
1355
+ <dl>
1356
+
1357
+ <dd>
1358
+
1359
+ #### 📝 Description
1360
+
1361
+ <dl>
1362
+
1363
+ <dd>
1364
+
1365
+ <dl>
1366
+
1367
+ <dd>
1368
+
1369
+ Returns 200 if successful
1370
+
1371
+ </dd>
1372
+
1373
+ </dl>
1374
+
1375
+ </dd>
1376
+
1377
+ </dl>
1378
+
1379
+ #### 🔌 Usage
1380
+
1381
+ <dl>
1382
+
1383
+ <dd>
1384
+
1385
+ <dl>
1386
+
1387
+ <dd>
1388
+
1389
+ ```ts
1390
+ await hume.customModels.datasets.listDatasetVersionFiles("id");
1391
+ ```
1392
+
1393
+ </dd>
1394
+
1395
+ </dl>
1396
+
1397
+ </dd>
1398
+
1399
+ </dl>
1400
+
1401
+ #### ⚙️ Parameters
1402
+
1403
+ <dl>
1404
+
1405
+ <dd>
1406
+
1407
+ <dl>
1408
+
1409
+ <dd>
1410
+
1411
+ **id: `string`** — Hume-generated ID of a Dataset version
1412
+
1413
+ </dd>
1414
+
1415
+ </dl>
1416
+
1417
+ <dl>
1418
+
1419
+ <dd>
1420
+
1421
+ **request: `Hume.customModels.DatasetsListDatasetVersionFilesRequest`**
1422
+
1423
+ </dd>
1424
+
1425
+ </dl>
1426
+
1427
+ <dl>
1428
+
1429
+ <dd>
1430
+
1431
+ **requestOptions: `Datasets.RequestOptions`**
1432
+
1433
+ </dd>
1434
+
1435
+ </dl>
1436
+
1437
+ </dd>
1438
+
1439
+ </dl>
1440
+
1441
+ </dd>
1442
+
1443
+ </dl>
1444
+ </details>
1445
+
1446
+ ## CustomModels Models
1447
+
1448
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">listModels</a>({ ...params }) -> Hume.ModelPage</code> </summary>
1449
+
1450
+ <dl>
1451
+
1452
+ <dd>
1453
+
1454
+ #### 📝 Description
1455
+
1456
+ <dl>
1457
+
1458
+ <dd>
1459
+
1460
+ <dl>
1461
+
1462
+ <dd>
1463
+
1464
+ Returns 200 if successful
1465
+
1466
+ </dd>
1467
+
1468
+ </dl>
1469
+
1470
+ </dd>
1471
+
1472
+ </dl>
1473
+
1474
+ #### 🔌 Usage
1475
+
1476
+ <dl>
1477
+
1478
+ <dd>
1479
+
1480
+ <dl>
1481
+
1482
+ <dd>
1483
+
1484
+ ```ts
1485
+ await hume.customModels.models.listModels();
1486
+ ```
1487
+
1488
+ </dd>
1489
+
1490
+ </dl>
1491
+
1492
+ </dd>
1493
+
1494
+ </dl>
1495
+
1496
+ #### ⚙️ Parameters
1497
+
1498
+ <dl>
1499
+
1500
+ <dd>
1501
+
1502
+ <dl>
1503
+
1504
+ <dd>
1505
+
1506
+ **request: `Hume.customModels.ModelsListModelsRequest`**
1507
+
1508
+ </dd>
1509
+
1510
+ </dl>
1511
+
1512
+ <dl>
1513
+
1514
+ <dd>
1515
+
1516
+ **requestOptions: `Models.RequestOptions`**
1517
+
1518
+ </dd>
1519
+
1520
+ </dl>
1521
+
1522
+ </dd>
1523
+
1524
+ </dl>
1525
+
1526
+ </dd>
1527
+
1528
+ </dl>
1529
+ </details>
1530
+
1531
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">getModelDetails</a>(id) -> Hume.ExternalModel</code> </summary>
1532
+
1533
+ <dl>
1534
+
1535
+ <dd>
1536
+
1537
+ #### 📝 Description
1538
+
1539
+ <dl>
1540
+
1541
+ <dd>
1542
+
1543
+ <dl>
1544
+
1545
+ <dd>
1546
+
1547
+ Returns 200 if successful
1548
+
1549
+ </dd>
1550
+
1551
+ </dl>
1552
+
1553
+ </dd>
1554
+
1555
+ </dl>
1556
+
1557
+ #### 🔌 Usage
1558
+
1559
+ <dl>
1560
+
1561
+ <dd>
1562
+
1563
+ <dl>
1564
+
1565
+ <dd>
1566
+
1567
+ ```ts
1568
+ await hume.customModels.models.getModelDetails("id");
1569
+ ```
1570
+
1571
+ </dd>
1572
+
1573
+ </dl>
1574
+
1575
+ </dd>
1576
+
1577
+ </dl>
1578
+
1579
+ #### ⚙️ Parameters
1580
+
1581
+ <dl>
1582
+
1583
+ <dd>
1584
+
1585
+ <dl>
1586
+
1587
+ <dd>
1588
+
1589
+ **id: `string`** — Hume-generated ID of a Model
1590
+
1591
+ </dd>
1592
+
1593
+ </dl>
1594
+
1595
+ <dl>
1596
+
1597
+ <dd>
1598
+
1599
+ **requestOptions: `Models.RequestOptions`**
1600
+
1601
+ </dd>
1602
+
1603
+ </dl>
1604
+
1605
+ </dd>
1606
+
1607
+ </dl>
1608
+
1609
+ </dd>
1610
+
1611
+ </dl>
1612
+ </details>
1613
+
1614
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">updateModelName</a>(id, { ...params }) -> Hume.ExternalModel</code> </summary>
1615
+
1616
+ <dl>
1617
+
1618
+ <dd>
1619
+
1620
+ #### 📝 Description
1621
+
1622
+ <dl>
1623
+
1624
+ <dd>
1625
+
1626
+ <dl>
1627
+
1628
+ <dd>
1629
+
1630
+ Returns 200 if successful
1631
+
1632
+ </dd>
1633
+
1634
+ </dl>
1635
+
1636
+ </dd>
1637
+
1638
+ </dl>
1639
+
1640
+ #### 🔌 Usage
1641
+
1642
+ <dl>
1643
+
1644
+ <dd>
1645
+
1646
+ <dl>
1647
+
1648
+ <dd>
1649
+
1650
+ ```ts
1651
+ await hume.customModels.models.updateModelName("id", {
1652
+ name: "name",
1653
+ });
1654
+ ```
1655
+
1656
+ </dd>
1657
+
1658
+ </dl>
1659
+
1660
+ </dd>
1661
+
1662
+ </dl>
1663
+
1664
+ #### ⚙️ Parameters
1665
+
1666
+ <dl>
1667
+
1668
+ <dd>
1669
+
1670
+ <dl>
1671
+
1672
+ <dd>
1673
+
1674
+ **id: `string`** — Hume-generated ID of a Model
1675
+
1676
+ </dd>
1677
+
1678
+ </dl>
1679
+
1680
+ <dl>
1681
+
1682
+ <dd>
1683
+
1684
+ **request: `Hume.customModels.ModelsUpdateModelNameRequest`**
1685
+
1686
+ </dd>
1687
+
1688
+ </dl>
1689
+
1690
+ <dl>
1691
+
1692
+ <dd>
1693
+
1694
+ **requestOptions: `Models.RequestOptions`**
1695
+
1696
+ </dd>
1697
+
1698
+ </dl>
1699
+
1700
+ </dd>
1701
+
1702
+ </dl>
1703
+
1704
+ </dd>
1705
+
1706
+ </dl>
1707
+ </details>
1708
+
1709
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">listModelVersions</a>({ ...params }) -> Hume.ExternalModelVersion[]</code> </summary>
1710
+
1711
+ <dl>
1712
+
1713
+ <dd>
1714
+
1715
+ #### 📝 Description
1716
+
1717
+ <dl>
1718
+
1719
+ <dd>
1720
+
1721
+ <dl>
1722
+
1723
+ <dd>
1724
+
1725
+ Returns 200 if successful
1726
+
1727
+ </dd>
1728
+
1729
+ </dl>
1730
+
1731
+ </dd>
1732
+
1733
+ </dl>
1734
+
1735
+ #### 🔌 Usage
1736
+
1737
+ <dl>
1738
+
1739
+ <dd>
1740
+
1741
+ <dl>
1742
+
1743
+ <dd>
1744
+
1745
+ ```ts
1746
+ await hume.customModels.models.listModelVersions();
1747
+ ```
1748
+
1749
+ </dd>
1750
+
1751
+ </dl>
1752
+
1753
+ </dd>
1754
+
1755
+ </dl>
1756
+
1757
+ #### ⚙️ Parameters
1758
+
1759
+ <dl>
1760
+
1761
+ <dd>
1762
+
1763
+ <dl>
1764
+
1765
+ <dd>
1766
+
1767
+ **request: `Hume.customModels.ModelsListModelVersionsRequest`**
1768
+
1769
+ </dd>
1770
+
1771
+ </dl>
1772
+
1773
+ <dl>
1774
+
1775
+ <dd>
1776
+
1777
+ **requestOptions: `Models.RequestOptions`**
1778
+
1779
+ </dd>
1780
+
1781
+ </dl>
1782
+
1783
+ </dd>
1784
+
1785
+ </dl>
1786
+
1787
+ </dd>
1788
+
1789
+ </dl>
1790
+ </details>
1791
+
1792
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">getModelVersion</a>(id, { ...params }) -> Hume.ExternalModelVersion</code> </summary>
1793
+
1794
+ <dl>
1795
+
1796
+ <dd>
1797
+
1798
+ #### 📝 Description
1799
+
1800
+ <dl>
1801
+
1802
+ <dd>
1803
+
1804
+ <dl>
1805
+
1806
+ <dd>
1807
+
1808
+ Returns 200 if successful
1809
+
1810
+ </dd>
1811
+
1812
+ </dl>
1813
+
1814
+ </dd>
1815
+
1816
+ </dl>
1817
+
1818
+ #### 🔌 Usage
1819
+
1820
+ <dl>
1821
+
1822
+ <dd>
1823
+
1824
+ <dl>
1825
+
1826
+ <dd>
1827
+
1828
+ ```ts
1829
+ await hume.customModels.models.getModelVersion("id");
1830
+ ```
1831
+
1832
+ </dd>
1833
+
1834
+ </dl>
1835
+
1836
+ </dd>
1837
+
1838
+ </dl>
1839
+
1840
+ #### ⚙️ Parameters
1841
+
1842
+ <dl>
1843
+
1844
+ <dd>
1845
+
1846
+ <dl>
1847
+
1848
+ <dd>
1849
+
1850
+ **id: `string`** — Hume-generated ID of a Model version
1851
+
1852
+ </dd>
1853
+
1854
+ </dl>
1855
+
1856
+ <dl>
1857
+
1858
+ <dd>
1859
+
1860
+ **request: `Hume.customModels.ModelsGetModelVersionRequest`**
1861
+
1862
+ </dd>
1863
+
1864
+ </dl>
1865
+
1866
+ <dl>
1867
+
1868
+ <dd>
1869
+
1870
+ **requestOptions: `Models.RequestOptions`**
1871
+
1872
+ </dd>
1873
+
1874
+ </dl>
1875
+
1876
+ </dd>
1877
+
1878
+ </dl>
1879
+
1880
+ </dd>
1881
+
1882
+ </dl>
1883
+ </details>
1884
+
1885
+ <details><summary> <code>hume.customModels.models.<a href="./src/api/resources/customModels/resources/models/client/Client.ts">updateModelDescription</a>(id, { ...params }) -> Hume.ExternalModelVersion</code> </summary>
1886
+
1887
+ <dl>
1888
+
1889
+ <dd>
1890
+
1891
+ #### 📝 Description
1892
+
1893
+ <dl>
1894
+
1895
+ <dd>
1896
+
1897
+ <dl>
1898
+
1899
+ <dd>
1900
+
1901
+ Returns 200 if successful
1902
+
1903
+ </dd>
1904
+
1905
+ </dl>
1906
+
1907
+ </dd>
1908
+
1909
+ </dl>
1910
+
1911
+ #### 🔌 Usage
1912
+
1913
+ <dl>
1914
+
1915
+ <dd>
1916
+
1917
+ <dl>
1918
+
1919
+ <dd>
1920
+
1921
+ ```ts
1922
+ await hume.customModels.models.updateModelDescription("id", "string");
1923
+ ```
1924
+
1925
+ </dd>
1926
+
1927
+ </dl>
1928
+
1929
+ </dd>
1930
+
1931
+ </dl>
1932
+
1933
+ #### ⚙️ Parameters
1934
+
1935
+ <dl>
1936
+
1937
+ <dd>
1938
+
1939
+ <dl>
1940
+
1941
+ <dd>
1942
+
1943
+ **id: `string`** — Hume-generated ID of a Model Version
1944
+
1945
+ </dd>
1946
+
1947
+ </dl>
1948
+
1949
+ <dl>
1950
+
1951
+ <dd>
1952
+
1953
+ **request: `string`**
1954
+
1955
+ </dd>
1956
+
1957
+ </dl>
1958
+
1959
+ <dl>
1960
+
1961
+ <dd>
1962
+
1963
+ **requestOptions: `Models.RequestOptions`**
1964
+
1965
+ </dd>
1966
+
1967
+ </dl>
1968
+
1969
+ </dd>
1970
+
1971
+ </dl>
1972
+
1973
+ </dd>
1974
+
1975
+ </dl>
1976
+ </details>
1977
+
1978
+ ## CustomModels Jobs
1979
+
1980
+ <details><summary> <code>hume.customModels.jobs.<a href="./src/api/resources/customModels/resources/jobs/client/Client.ts">startTrainingJob</a>({ ...params }) -> Hume.JobId</code> </summary>
1981
+
1982
+ <dl>
1983
+
1984
+ <dd>
1985
+
1986
+ #### 📝 Description
1987
+
1988
+ <dl>
1989
+
1990
+ <dd>
1991
+
1992
+ <dl>
1993
+
1994
+ <dd>
1995
+
1996
+ Start a new custom models training job.
1997
+
1998
+ </dd>
1999
+
2000
+ </dl>
2001
+
2002
+ </dd>
2003
+
2004
+ </dl>
2005
+
2006
+ #### 🔌 Usage
2007
+
2008
+ <dl>
2009
+
2010
+ <dd>
2011
+
2012
+ <dl>
2013
+
2014
+ <dd>
2015
+
2016
+ ```ts
2017
+ await hume.customModels.jobs.startTrainingJob({
2018
+ customModel: {
2019
+ name: "name",
2020
+ },
2021
+ dataset: {
2022
+ id: "id",
2023
+ },
2024
+ });
2025
+ ```
2026
+
2027
+ </dd>
2028
+
2029
+ </dl>
2030
+
2031
+ </dd>
2032
+
2033
+ </dl>
2034
+
2035
+ #### ⚙️ Parameters
2036
+
2037
+ <dl>
2038
+
2039
+ <dd>
2040
+
2041
+ <dl>
2042
+
2043
+ <dd>
2044
+
2045
+ **request: `Hume.TrainingBaseRequest`**
2046
+
2047
+ </dd>
2048
+
2049
+ </dl>
2050
+
2051
+ <dl>
2052
+
2053
+ <dd>
2054
+
2055
+ **requestOptions: `Jobs.RequestOptions`**
2056
+
2057
+ </dd>
2058
+
2059
+ </dl>
2060
+
2061
+ </dd>
2062
+
2063
+ </dl>
2064
+
2065
+ </dd>
2066
+
2067
+ </dl>
2068
+ </details>
2069
+
2070
+ <details><summary> <code>hume.customModels.jobs.<a href="./src/api/resources/customModels/resources/jobs/client/Client.ts">startCustomModelsInferenceJob</a>({ ...params }) -> Hume.JobId</code> </summary>
2071
+
2072
+ <dl>
2073
+
2074
+ <dd>
2075
+
2076
+ #### 📝 Description
2077
+
2078
+ <dl>
2079
+
2080
+ <dd>
2081
+
2082
+ <dl>
2083
+
2084
+ <dd>
2085
+
2086
+ Start a new custom models inference job.
2087
+
2088
+ </dd>
2089
+
2090
+ </dl>
2091
+
2092
+ </dd>
2093
+
2094
+ </dl>
2095
+
2096
+ #### 🔌 Usage
2097
+
2098
+ <dl>
2099
+
2100
+ <dd>
2101
+
2102
+ <dl>
2103
+
2104
+ <dd>
2105
+
2106
+ ```ts
2107
+ await hume.customModels.jobs.startCustomModelsInferenceJob({
2108
+ customModel: {
2109
+ id: "id",
2110
+ },
2111
+ });
2112
+ ```
2113
+
2114
+ </dd>
2115
+
2116
+ </dl>
2117
+
2118
+ </dd>
2119
+
2120
+ </dl>
2121
+
2122
+ #### ⚙️ Parameters
2123
+
2124
+ <dl>
2125
+
2126
+ <dd>
2127
+
2128
+ <dl>
2129
+
2130
+ <dd>
2131
+
2132
+ **request: `Hume.TlInferenceBaseRequest`**
2133
+
2134
+ </dd>
2135
+
2136
+ </dl>
2137
+
2138
+ <dl>
2139
+
2140
+ <dd>
2141
+
2142
+ **requestOptions: `Jobs.RequestOptions`**
2143
+
2144
+ </dd>
2145
+
2146
+ </dl>
2147
+
2148
+ </dd>
2149
+
2150
+ </dl>
2151
+
2152
+ </dd>
2153
+
2154
+ </dl>
2155
+ </details>
2156
+
2157
+ ## EmpathicVoice Tools
2158
+
2159
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">listTools</a>({ ...params }) -> Hume.ReturnPagedUserDefinedTools</code> </summary>
2160
+
2161
+ <dl>
2162
+
2163
+ <dd>
2164
+
2165
+ #### 🔌 Usage
2166
+
2167
+ <dl>
2168
+
2169
+ <dd>
2170
+
2171
+ <dl>
2172
+
2173
+ <dd>
2174
+
2175
+ ```ts
2176
+ await hume.empathicVoice.tools.listTools({
2177
+ pageNumber: 0,
2178
+ pageSize: 2,
2179
+ });
2180
+ ```
2181
+
2182
+ </dd>
2183
+
2184
+ </dl>
2185
+
2186
+ </dd>
2187
+
2188
+ </dl>
2189
+
2190
+ #### ⚙️ Parameters
2191
+
2192
+ <dl>
2193
+
2194
+ <dd>
2195
+
2196
+ <dl>
2197
+
2198
+ <dd>
2199
+
2200
+ **request: `Hume.empathicVoice.ToolsListToolsRequest`**
2201
+
2202
+ </dd>
2203
+
2204
+ </dl>
2205
+
2206
+ <dl>
2207
+
2208
+ <dd>
2209
+
2210
+ **requestOptions: `Tools.RequestOptions`**
2211
+
2212
+ </dd>
2213
+
2214
+ </dl>
2215
+
2216
+ </dd>
2217
+
2218
+ </dl>
2219
+
2220
+ </dd>
2221
+
2222
+ </dl>
2223
+ </details>
2224
+
2225
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">createTool</a>({ ...params }) -> Hume.ReturnUserDefinedTool | undefined</code> </summary>
2226
+
2227
+ <dl>
2228
+
2229
+ <dd>
2230
+
2231
+ #### 🔌 Usage
2232
+
2233
+ <dl>
2234
+
2235
+ <dd>
2236
+
2237
+ <dl>
2238
+
2239
+ <dd>
2240
+
2241
+ ```ts
2242
+ await hume.empathicVoice.tools.createTool({
2243
+ name: "get_current_weather",
2244
+ parameters:
2245
+ '{ "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA" }, "format": { "type": "string", "enum": ["celsius", "fahrenheit"], "description": "The temperature unit to use. Infer this from the users location." } }, "required": ["location", "format"] }',
2246
+ versionDescription: "Fetches current weather and uses celsius or fahrenheit based on location of user.",
2247
+ description: "This tool is for getting the current weather.",
2248
+ fallbackContent: "Unable to fetch current weather.",
2249
+ });
2250
+ ```
2251
+
2252
+ </dd>
2253
+
2254
+ </dl>
2255
+
2256
+ </dd>
2257
+
2258
+ </dl>
2259
+
2260
+ #### ⚙️ Parameters
2261
+
2262
+ <dl>
2263
+
2264
+ <dd>
2265
+
2266
+ <dl>
2267
+
2268
+ <dd>
2269
+
2270
+ **request: `Hume.empathicVoice.PostedUserDefinedTool`**
2271
+
2272
+ </dd>
2273
+
2274
+ </dl>
2275
+
2276
+ <dl>
2277
+
2278
+ <dd>
2279
+
2280
+ **requestOptions: `Tools.RequestOptions`**
2281
+
2282
+ </dd>
2283
+
2284
+ </dl>
2285
+
2286
+ </dd>
2287
+
2288
+ </dl>
2289
+
2290
+ </dd>
2291
+
2292
+ </dl>
2293
+ </details>
2294
+
2295
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">listToolVersions</a>(id, { ...params }) -> Hume.ReturnPagedUserDefinedTools</code> </summary>
2296
+
2297
+ <dl>
2298
+
2299
+ <dd>
2300
+
2301
+ #### 🔌 Usage
2302
+
2303
+ <dl>
2304
+
2305
+ <dd>
2306
+
2307
+ <dl>
2308
+
2309
+ <dd>
2310
+
2311
+ ```ts
2312
+ await hume.empathicVoice.tools.listToolVersions("00183a3f-79ba-413d-9f3b-609864268bea");
2313
+ ```
2314
+
2315
+ </dd>
2316
+
2317
+ </dl>
2318
+
2319
+ </dd>
2320
+
2321
+ </dl>
2322
+
2323
+ #### ⚙️ Parameters
2324
+
2325
+ <dl>
2326
+
2327
+ <dd>
2328
+
2329
+ <dl>
2330
+
2331
+ <dd>
2332
+
2333
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2334
+
2335
+ </dd>
2336
+
2337
+ </dl>
2338
+
2339
+ <dl>
2340
+
2341
+ <dd>
2342
+
2343
+ **request: `Hume.empathicVoice.ToolsListToolVersionsRequest`**
2344
+
2345
+ </dd>
2346
+
2347
+ </dl>
2348
+
2349
+ <dl>
2350
+
2351
+ <dd>
2352
+
2353
+ **requestOptions: `Tools.RequestOptions`**
2354
+
2355
+ </dd>
2356
+
2357
+ </dl>
2358
+
2359
+ </dd>
2360
+
2361
+ </dl>
2362
+
2363
+ </dd>
2364
+
2365
+ </dl>
2366
+ </details>
2367
+
2368
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">createToolVersion</a>(id, { ...params }) -> Hume.ReturnUserDefinedTool | undefined</code> </summary>
2369
+
2370
+ <dl>
2371
+
2372
+ <dd>
2373
+
2374
+ #### 🔌 Usage
2375
+
2376
+ <dl>
2377
+
2378
+ <dd>
2379
+
2380
+ <dl>
2381
+
2382
+ <dd>
2383
+
2384
+ ```ts
2385
+ await hume.empathicVoice.tools.createToolVersion("00183a3f-79ba-413d-9f3b-609864268bea", {
2386
+ parameters:
2387
+ '{ "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA" }, "format": { "type": "string", "enum": ["celsius", "fahrenheit", "kelvin"], "description": "The temperature unit to use. Infer this from the users location." } }, "required": ["location", "format"] }',
2388
+ versionDescription: "Fetches current weather and uses celsius, fahrenheit, or kelvin based on location of user.",
2389
+ fallbackContent: "Unable to fetch current weather.",
2390
+ description: "This tool is for getting the current weather.",
2391
+ });
2392
+ ```
2393
+
2394
+ </dd>
2395
+
2396
+ </dl>
2397
+
2398
+ </dd>
2399
+
2400
+ </dl>
2401
+
2402
+ #### ⚙️ Parameters
2403
+
2404
+ <dl>
2405
+
2406
+ <dd>
2407
+
2408
+ <dl>
2409
+
2410
+ <dd>
2411
+
2412
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2413
+
2414
+ </dd>
2415
+
2416
+ </dl>
2417
+
2418
+ <dl>
2419
+
2420
+ <dd>
2421
+
2422
+ **request: `Hume.empathicVoice.PostedUserDefinedToolVersion`**
2423
+
2424
+ </dd>
2425
+
2426
+ </dl>
2427
+
2428
+ <dl>
2429
+
2430
+ <dd>
2431
+
2432
+ **requestOptions: `Tools.RequestOptions`**
2433
+
2434
+ </dd>
2435
+
2436
+ </dl>
2437
+
2438
+ </dd>
2439
+
2440
+ </dl>
2441
+
2442
+ </dd>
2443
+
2444
+ </dl>
2445
+ </details>
2446
+
2447
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">deleteTool</a>(id) -> void</code> </summary>
2448
+
2449
+ <dl>
2450
+
2451
+ <dd>
2452
+
2453
+ #### 🔌 Usage
2454
+
2455
+ <dl>
2456
+
2457
+ <dd>
2458
+
2459
+ <dl>
2460
+
2461
+ <dd>
2462
+
2463
+ ```ts
2464
+ await hume.empathicVoice.tools.deleteTool("00183a3f-79ba-413d-9f3b-609864268bea");
2465
+ ```
2466
+
2467
+ </dd>
2468
+
2469
+ </dl>
2470
+
2471
+ </dd>
2472
+
2473
+ </dl>
2474
+
2475
+ #### ⚙️ Parameters
2476
+
2477
+ <dl>
2478
+
2479
+ <dd>
2480
+
2481
+ <dl>
2482
+
2483
+ <dd>
2484
+
2485
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2486
+
2487
+ </dd>
2488
+
2489
+ </dl>
2490
+
2491
+ <dl>
2492
+
2493
+ <dd>
2494
+
2495
+ **requestOptions: `Tools.RequestOptions`**
2496
+
2497
+ </dd>
2498
+
2499
+ </dl>
2500
+
2501
+ </dd>
2502
+
2503
+ </dl>
2504
+
2505
+ </dd>
2506
+
2507
+ </dl>
2508
+ </details>
2509
+
2510
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">updateToolName</a>(id, { ...params }) -> string</code> </summary>
2511
+
2512
+ <dl>
2513
+
2514
+ <dd>
2515
+
2516
+ #### 🔌 Usage
2517
+
2518
+ <dl>
2519
+
2520
+ <dd>
2521
+
2522
+ <dl>
2523
+
2524
+ <dd>
2525
+
2526
+ ```ts
2527
+ await hume.empathicVoice.tools.updateToolName("00183a3f-79ba-413d-9f3b-609864268bea", {
2528
+ name: "get_current_temperature",
2529
+ });
2530
+ ```
2531
+
2532
+ </dd>
2533
+
2534
+ </dl>
2535
+
2536
+ </dd>
2537
+
2538
+ </dl>
2539
+
2540
+ #### ⚙️ Parameters
2541
+
2542
+ <dl>
2543
+
2544
+ <dd>
2545
+
2546
+ <dl>
2547
+
2548
+ <dd>
2549
+
2550
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2551
+
2552
+ </dd>
2553
+
2554
+ </dl>
2555
+
2556
+ <dl>
2557
+
2558
+ <dd>
2559
+
2560
+ **request: `Hume.empathicVoice.PostedUserDefinedToolName`**
2561
+
2562
+ </dd>
2563
+
2564
+ </dl>
2565
+
2566
+ <dl>
2567
+
2568
+ <dd>
2569
+
2570
+ **requestOptions: `Tools.RequestOptions`**
2571
+
2572
+ </dd>
2573
+
2574
+ </dl>
2575
+
2576
+ </dd>
2577
+
2578
+ </dl>
2579
+
2580
+ </dd>
2581
+
2582
+ </dl>
2583
+ </details>
2584
+
2585
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">getToolVersion</a>(id, version) -> Hume.ReturnUserDefinedTool | undefined</code> </summary>
2586
+
2587
+ <dl>
2588
+
2589
+ <dd>
2590
+
2591
+ #### 🔌 Usage
2592
+
2593
+ <dl>
2594
+
2595
+ <dd>
2596
+
2597
+ <dl>
2598
+
2599
+ <dd>
2600
+
2601
+ ```ts
2602
+ await hume.empathicVoice.tools.getToolVersion("00183a3f-79ba-413d-9f3b-609864268bea", 1);
2603
+ ```
2604
+
2605
+ </dd>
2606
+
2607
+ </dl>
2608
+
2609
+ </dd>
2610
+
2611
+ </dl>
2612
+
2613
+ #### ⚙️ Parameters
2614
+
2615
+ <dl>
2616
+
2617
+ <dd>
2618
+
2619
+ <dl>
2620
+
2621
+ <dd>
2622
+
2623
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2624
+
2625
+ </dd>
2626
+
2627
+ </dl>
2628
+
2629
+ <dl>
2630
+
2631
+ <dd>
2632
+
2633
+ **version: `number`** — Version number for a tool. Version numbers should be integers.
2634
+
2635
+ </dd>
2636
+
2637
+ </dl>
2638
+
2639
+ <dl>
2640
+
2641
+ <dd>
2642
+
2643
+ **requestOptions: `Tools.RequestOptions`**
2644
+
2645
+ </dd>
2646
+
2647
+ </dl>
2648
+
2649
+ </dd>
2650
+
2651
+ </dl>
2652
+
2653
+ </dd>
2654
+
2655
+ </dl>
2656
+ </details>
2657
+
2658
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">deleteToolVersion</a>(id, version) -> void</code> </summary>
2659
+
2660
+ <dl>
2661
+
2662
+ <dd>
2663
+
2664
+ #### 🔌 Usage
2665
+
2666
+ <dl>
2667
+
2668
+ <dd>
2669
+
2670
+ <dl>
2671
+
2672
+ <dd>
2673
+
2674
+ ```ts
2675
+ await hume.empathicVoice.tools.deleteToolVersion("00183a3f-79ba-413d-9f3b-609864268bea", 1);
2676
+ ```
2677
+
2678
+ </dd>
2679
+
2680
+ </dl>
2681
+
2682
+ </dd>
2683
+
2684
+ </dl>
2685
+
2686
+ #### ⚙️ Parameters
2687
+
2688
+ <dl>
2689
+
2690
+ <dd>
2691
+
2692
+ <dl>
2693
+
2694
+ <dd>
2695
+
2696
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2697
+
2698
+ </dd>
2699
+
2700
+ </dl>
2701
+
2702
+ <dl>
2703
+
2704
+ <dd>
2705
+
2706
+ **version: `number`** — Version number for a tool. Version numbers should be integers.
2707
+
2708
+ </dd>
2709
+
2710
+ </dl>
2711
+
2712
+ <dl>
2713
+
2714
+ <dd>
2715
+
2716
+ **requestOptions: `Tools.RequestOptions`**
2717
+
2718
+ </dd>
2719
+
2720
+ </dl>
2721
+
2722
+ </dd>
2723
+
2724
+ </dl>
2725
+
2726
+ </dd>
2727
+
2728
+ </dl>
2729
+ </details>
2730
+
2731
+ <details><summary> <code>hume.empathicVoice.tools.<a href="./src/api/resources/empathicVoice/resources/tools/client/Client.ts">updateToolDescription</a>(id, version, { ...params }) -> Hume.ReturnUserDefinedTool | undefined</code> </summary>
2732
+
2733
+ <dl>
2734
+
2735
+ <dd>
2736
+
2737
+ #### 🔌 Usage
2738
+
2739
+ <dl>
2740
+
2741
+ <dd>
2742
+
2743
+ <dl>
2744
+
2745
+ <dd>
2746
+
2747
+ ```ts
2748
+ await hume.empathicVoice.tools.updateToolDescription("00183a3f-79ba-413d-9f3b-609864268bea", 1, {
2749
+ versionDescription:
2750
+ "Fetches current temperature, precipitation, wind speed, AQI, and other weather conditions. Uses Celsius, Fahrenheit, or kelvin depending on user's region.",
2751
+ });
2752
+ ```
2753
+
2754
+ </dd>
2755
+
2756
+ </dl>
2757
+
2758
+ </dd>
2759
+
2760
+ </dl>
2761
+
2762
+ #### ⚙️ Parameters
2763
+
2764
+ <dl>
2765
+
2766
+ <dd>
2767
+
2768
+ <dl>
2769
+
2770
+ <dd>
2771
+
2772
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2773
+
2774
+ </dd>
2775
+
2776
+ </dl>
2777
+
2778
+ <dl>
2779
+
2780
+ <dd>
2781
+
2782
+ **version: `number`** — Version number for a tool. Version numbers should be integers.
2783
+
2784
+ </dd>
2785
+
2786
+ </dl>
2787
+
2788
+ <dl>
2789
+
2790
+ <dd>
2791
+
2792
+ **request: `Hume.empathicVoice.PostedUserDefinedToolVersionDescription`**
2793
+
2794
+ </dd>
2795
+
2796
+ </dl>
2797
+
2798
+ <dl>
2799
+
2800
+ <dd>
2801
+
2802
+ **requestOptions: `Tools.RequestOptions`**
2803
+
2804
+ </dd>
2805
+
2806
+ </dl>
2807
+
2808
+ </dd>
2809
+
2810
+ </dl>
2811
+
2812
+ </dd>
2813
+
2814
+ </dl>
2815
+ </details>
2816
+
2817
+ ## EmpathicVoice Prompts
2818
+
2819
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">listPrompts</a>({ ...params }) -> Hume.ReturnPagedPrompts</code> </summary>
2820
+
2821
+ <dl>
2822
+
2823
+ <dd>
2824
+
2825
+ #### 🔌 Usage
2826
+
2827
+ <dl>
2828
+
2829
+ <dd>
2830
+
2831
+ <dl>
2832
+
2833
+ <dd>
2834
+
2835
+ ```ts
2836
+ await hume.empathicVoice.prompts.listPrompts();
2837
+ ```
2838
+
2839
+ </dd>
2840
+
2841
+ </dl>
2842
+
2843
+ </dd>
2844
+
2845
+ </dl>
2846
+
2847
+ #### ⚙️ Parameters
2848
+
2849
+ <dl>
2850
+
2851
+ <dd>
2852
+
2853
+ <dl>
2854
+
2855
+ <dd>
2856
+
2857
+ **request: `Hume.empathicVoice.PromptsListPromptsRequest`**
2858
+
2859
+ </dd>
2860
+
2861
+ </dl>
2862
+
2863
+ <dl>
2864
+
2865
+ <dd>
2866
+
2867
+ **requestOptions: `Prompts.RequestOptions`**
2868
+
2869
+ </dd>
2870
+
2871
+ </dl>
2872
+
2873
+ </dd>
2874
+
2875
+ </dl>
2876
+
2877
+ </dd>
2878
+
2879
+ </dl>
2880
+ </details>
2881
+
2882
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">createPrompt</a>({ ...params }) -> Hume.ReturnPrompt | undefined</code> </summary>
2883
+
2884
+ <dl>
2885
+
2886
+ <dd>
2887
+
2888
+ #### 🔌 Usage
2889
+
2890
+ <dl>
2891
+
2892
+ <dd>
2893
+
2894
+ <dl>
2895
+
2896
+ <dd>
2897
+
2898
+ ```ts
2899
+ await hume.empathicVoice.prompts.createPrompt({
2900
+ name: "name",
2901
+ text: "text",
2902
+ });
2903
+ ```
2904
+
2905
+ </dd>
2906
+
2907
+ </dl>
2908
+
2909
+ </dd>
2910
+
2911
+ </dl>
2912
+
2913
+ #### ⚙️ Parameters
2914
+
2915
+ <dl>
2916
+
2917
+ <dd>
2918
+
2919
+ <dl>
2920
+
2921
+ <dd>
2922
+
2923
+ **request: `Hume.empathicVoice.PostedPrompt`**
2924
+
2925
+ </dd>
2926
+
2927
+ </dl>
2928
+
2929
+ <dl>
2930
+
2931
+ <dd>
2932
+
2933
+ **requestOptions: `Prompts.RequestOptions`**
2934
+
2935
+ </dd>
2936
+
2937
+ </dl>
2938
+
2939
+ </dd>
2940
+
2941
+ </dl>
2942
+
2943
+ </dd>
2944
+
2945
+ </dl>
2946
+ </details>
2947
+
2948
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">listPromptVersions</a>(id, { ...params }) -> Hume.ReturnPagedPrompts</code> </summary>
2949
+
2950
+ <dl>
2951
+
2952
+ <dd>
2953
+
2954
+ #### 🔌 Usage
2955
+
2956
+ <dl>
2957
+
2958
+ <dd>
2959
+
2960
+ <dl>
2961
+
2962
+ <dd>
2963
+
2964
+ ```ts
2965
+ await hume.empathicVoice.prompts.listPromptVersions("id");
2966
+ ```
2967
+
2968
+ </dd>
2969
+
2970
+ </dl>
2971
+
2972
+ </dd>
2973
+
2974
+ </dl>
2975
+
2976
+ #### ⚙️ Parameters
2977
+
2978
+ <dl>
2979
+
2980
+ <dd>
2981
+
2982
+ <dl>
2983
+
2984
+ <dd>
2985
+
2986
+ **id: `string`** — Identifier for a tool. Formatted as a UUID.
2987
+
2988
+ </dd>
2989
+
2990
+ </dl>
2991
+
2992
+ <dl>
2993
+
2994
+ <dd>
2995
+
2996
+ **request: `Hume.empathicVoice.PromptsListPromptVersionsRequest`**
2997
+
2998
+ </dd>
2999
+
3000
+ </dl>
3001
+
3002
+ <dl>
3003
+
3004
+ <dd>
3005
+
3006
+ **requestOptions: `Prompts.RequestOptions`**
3007
+
3008
+ </dd>
3009
+
3010
+ </dl>
3011
+
3012
+ </dd>
3013
+
3014
+ </dl>
3015
+
3016
+ </dd>
3017
+
3018
+ </dl>
3019
+ </details>
3020
+
3021
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">createPromptVerison</a>(id, { ...params }) -> Hume.ReturnPrompt | undefined</code> </summary>
3022
+
3023
+ <dl>
3024
+
3025
+ <dd>
3026
+
3027
+ #### 🔌 Usage
3028
+
3029
+ <dl>
3030
+
3031
+ <dd>
3032
+
3033
+ <dl>
3034
+
3035
+ <dd>
3036
+
3037
+ ```ts
3038
+ await hume.empathicVoice.prompts.createPromptVerison("id", {
3039
+ text: "text",
3040
+ });
3041
+ ```
3042
+
3043
+ </dd>
3044
+
3045
+ </dl>
3046
+
3047
+ </dd>
3048
+
3049
+ </dl>
3050
+
3051
+ #### ⚙️ Parameters
3052
+
3053
+ <dl>
3054
+
3055
+ <dd>
3056
+
3057
+ <dl>
3058
+
3059
+ <dd>
3060
+
3061
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3062
+
3063
+ </dd>
3064
+
3065
+ </dl>
3066
+
3067
+ <dl>
3068
+
3069
+ <dd>
3070
+
3071
+ **request: `Hume.empathicVoice.PostedPromptVersion`**
3072
+
3073
+ </dd>
3074
+
3075
+ </dl>
3076
+
3077
+ <dl>
3078
+
3079
+ <dd>
3080
+
3081
+ **requestOptions: `Prompts.RequestOptions`**
3082
+
3083
+ </dd>
3084
+
3085
+ </dl>
3086
+
3087
+ </dd>
3088
+
3089
+ </dl>
3090
+
3091
+ </dd>
3092
+
3093
+ </dl>
3094
+ </details>
3095
+
3096
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">deletePrompt</a>(id) -> void</code> </summary>
3097
+
3098
+ <dl>
3099
+
3100
+ <dd>
3101
+
3102
+ #### 🔌 Usage
3103
+
3104
+ <dl>
3105
+
3106
+ <dd>
3107
+
3108
+ <dl>
3109
+
3110
+ <dd>
3111
+
3112
+ ```ts
3113
+ await hume.empathicVoice.prompts.deletePrompt("id");
3114
+ ```
3115
+
3116
+ </dd>
3117
+
3118
+ </dl>
3119
+
3120
+ </dd>
3121
+
3122
+ </dl>
3123
+
3124
+ #### ⚙️ Parameters
3125
+
3126
+ <dl>
3127
+
3128
+ <dd>
3129
+
3130
+ <dl>
3131
+
3132
+ <dd>
3133
+
3134
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3135
+
3136
+ </dd>
3137
+
3138
+ </dl>
3139
+
3140
+ <dl>
3141
+
3142
+ <dd>
3143
+
3144
+ **requestOptions: `Prompts.RequestOptions`**
3145
+
3146
+ </dd>
3147
+
3148
+ </dl>
3149
+
3150
+ </dd>
3151
+
3152
+ </dl>
3153
+
3154
+ </dd>
3155
+
3156
+ </dl>
3157
+ </details>
3158
+
3159
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">updatePromptName</a>(id, { ...params }) -> string</code> </summary>
3160
+
3161
+ <dl>
3162
+
3163
+ <dd>
3164
+
3165
+ #### 🔌 Usage
3166
+
3167
+ <dl>
3168
+
3169
+ <dd>
3170
+
3171
+ <dl>
3172
+
3173
+ <dd>
3174
+
3175
+ ```ts
3176
+ await hume.empathicVoice.prompts.updatePromptName("string", {
3177
+ name: "string",
3178
+ });
3179
+ ```
3180
+
3181
+ </dd>
3182
+
3183
+ </dl>
3184
+
3185
+ </dd>
3186
+
3187
+ </dl>
3188
+
3189
+ #### ⚙️ Parameters
3190
+
3191
+ <dl>
3192
+
3193
+ <dd>
3194
+
3195
+ <dl>
3196
+
3197
+ <dd>
3198
+
3199
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3200
+
3201
+ </dd>
3202
+
3203
+ </dl>
3204
+
3205
+ <dl>
3206
+
3207
+ <dd>
3208
+
3209
+ **request: `Hume.empathicVoice.PostedPromptName`**
3210
+
3211
+ </dd>
3212
+
3213
+ </dl>
3214
+
3215
+ <dl>
3216
+
3217
+ <dd>
3218
+
3219
+ **requestOptions: `Prompts.RequestOptions`**
3220
+
3221
+ </dd>
3222
+
3223
+ </dl>
3224
+
3225
+ </dd>
3226
+
3227
+ </dl>
3228
+
3229
+ </dd>
3230
+
3231
+ </dl>
3232
+ </details>
3233
+
3234
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">getPromptVersion</a>(id, version) -> Hume.ReturnPrompt | undefined</code> </summary>
3235
+
3236
+ <dl>
3237
+
3238
+ <dd>
3239
+
3240
+ #### 🔌 Usage
3241
+
3242
+ <dl>
3243
+
3244
+ <dd>
3245
+
3246
+ <dl>
3247
+
3248
+ <dd>
3249
+
3250
+ ```ts
3251
+ await hume.empathicVoice.prompts.getPromptVersion("id", 1);
3252
+ ```
3253
+
3254
+ </dd>
3255
+
3256
+ </dl>
3257
+
3258
+ </dd>
3259
+
3260
+ </dl>
3261
+
3262
+ #### ⚙️ Parameters
3263
+
3264
+ <dl>
3265
+
3266
+ <dd>
3267
+
3268
+ <dl>
3269
+
3270
+ <dd>
3271
+
3272
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3273
+
3274
+ </dd>
3275
+
3276
+ </dl>
3277
+
3278
+ <dl>
3279
+
3280
+ <dd>
3281
+
3282
+ **version: `number`** — Version number for a prompt. Version numbers should be integers.
3283
+
3284
+ </dd>
3285
+
3286
+ </dl>
3287
+
3288
+ <dl>
3289
+
3290
+ <dd>
3291
+
3292
+ **requestOptions: `Prompts.RequestOptions`**
3293
+
3294
+ </dd>
3295
+
3296
+ </dl>
3297
+
3298
+ </dd>
3299
+
3300
+ </dl>
3301
+
3302
+ </dd>
3303
+
3304
+ </dl>
3305
+ </details>
3306
+
3307
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">deletePromptVersion</a>(id, version) -> void</code> </summary>
3308
+
3309
+ <dl>
3310
+
3311
+ <dd>
3312
+
3313
+ #### 🔌 Usage
3314
+
3315
+ <dl>
3316
+
3317
+ <dd>
3318
+
3319
+ <dl>
3320
+
3321
+ <dd>
3322
+
3323
+ ```ts
3324
+ await hume.empathicVoice.prompts.deletePromptVersion("id", 1);
3325
+ ```
3326
+
3327
+ </dd>
3328
+
3329
+ </dl>
3330
+
3331
+ </dd>
3332
+
3333
+ </dl>
3334
+
3335
+ #### ⚙️ Parameters
3336
+
3337
+ <dl>
3338
+
3339
+ <dd>
3340
+
3341
+ <dl>
3342
+
3343
+ <dd>
3344
+
3345
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3346
+
3347
+ </dd>
3348
+
3349
+ </dl>
3350
+
3351
+ <dl>
3352
+
3353
+ <dd>
3354
+
3355
+ **version: `number`** — Version number for a prompt. Version numbers should be integers.
3356
+
3357
+ </dd>
3358
+
3359
+ </dl>
3360
+
3361
+ <dl>
3362
+
3363
+ <dd>
3364
+
3365
+ **requestOptions: `Prompts.RequestOptions`**
3366
+
3367
+ </dd>
3368
+
3369
+ </dl>
3370
+
3371
+ </dd>
3372
+
3373
+ </dl>
3374
+
3375
+ </dd>
3376
+
3377
+ </dl>
3378
+ </details>
3379
+
3380
+ <details><summary> <code>hume.empathicVoice.prompts.<a href="./src/api/resources/empathicVoice/resources/prompts/client/Client.ts">updatePromptDescription</a>(id, version, { ...params }) -> Hume.ReturnPrompt | undefined</code> </summary>
3381
+
3382
+ <dl>
3383
+
3384
+ <dd>
3385
+
3386
+ #### 🔌 Usage
3387
+
3388
+ <dl>
3389
+
3390
+ <dd>
3391
+
3392
+ <dl>
3393
+
3394
+ <dd>
3395
+
3396
+ ```ts
3397
+ await hume.empathicVoice.prompts.updatePromptDescription("id", 1);
3398
+ ```
3399
+
3400
+ </dd>
3401
+
3402
+ </dl>
3403
+
3404
+ </dd>
3405
+
3406
+ </dl>
3407
+
3408
+ #### ⚙️ Parameters
3409
+
3410
+ <dl>
3411
+
3412
+ <dd>
3413
+
3414
+ <dl>
3415
+
3416
+ <dd>
3417
+
3418
+ **id: `string`** — Identifier for a prompt. Formatted as a UUID.
3419
+
3420
+ </dd>
3421
+
3422
+ </dl>
3423
+
3424
+ <dl>
3425
+
3426
+ <dd>
3427
+
3428
+ **version: `number`** — Version number for a prompt. Version numbers should be integers.
3429
+
3430
+ </dd>
3431
+
3432
+ </dl>
3433
+
3434
+ <dl>
3435
+
3436
+ <dd>
3437
+
3438
+ **request: `Hume.empathicVoice.PostedPromptVersionDescription`**
3439
+
3440
+ </dd>
3441
+
3442
+ </dl>
3443
+
3444
+ <dl>
3445
+
3446
+ <dd>
3447
+
3448
+ **requestOptions: `Prompts.RequestOptions`**
3449
+
3450
+ </dd>
3451
+
3452
+ </dl>
3453
+
3454
+ </dd>
3455
+
3456
+ </dl>
3457
+
3458
+ </dd>
3459
+
3460
+ </dl>
3461
+ </details>
3462
+
3463
+ ## EmpathicVoice Configs
3464
+
3465
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">listConfigs</a>({ ...params }) -> Hume.ReturnPagedConfigs</code> </summary>
3466
+
3467
+ <dl>
3468
+
3469
+ <dd>
3470
+
3471
+ #### 🔌 Usage
3472
+
3473
+ <dl>
3474
+
3475
+ <dd>
3476
+
3477
+ <dl>
3478
+
3479
+ <dd>
3480
+
3481
+ ```ts
3482
+ await hume.empathicVoice.configs.listConfigs();
3483
+ ```
3484
+
3485
+ </dd>
3486
+
3487
+ </dl>
3488
+
3489
+ </dd>
3490
+
3491
+ </dl>
3492
+
3493
+ #### ⚙️ Parameters
3494
+
3495
+ <dl>
3496
+
3497
+ <dd>
3498
+
3499
+ <dl>
3500
+
3501
+ <dd>
3502
+
3503
+ **request: `Hume.empathicVoice.ConfigsListConfigsRequest`**
3504
+
3505
+ </dd>
3506
+
3507
+ </dl>
3508
+
3509
+ <dl>
3510
+
3511
+ <dd>
3512
+
3513
+ **requestOptions: `Configs.RequestOptions`**
3514
+
3515
+ </dd>
3516
+
3517
+ </dl>
3518
+
3519
+ </dd>
3520
+
3521
+ </dl>
3522
+
3523
+ </dd>
3524
+
3525
+ </dl>
3526
+ </details>
3527
+
3528
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">createConfig</a>({ ...params }) -> Hume.ReturnConfig</code> </summary>
3529
+
3530
+ <dl>
3531
+
3532
+ <dd>
3533
+
3534
+ #### 🔌 Usage
3535
+
3536
+ <dl>
3537
+
3538
+ <dd>
3539
+
3540
+ <dl>
3541
+
3542
+ <dd>
3543
+
3544
+ ```ts
3545
+ await hume.empathicVoice.configs.createConfig({
3546
+ name: "name",
3547
+ });
3548
+ ```
3549
+
3550
+ </dd>
3551
+
3552
+ </dl>
3553
+
3554
+ </dd>
3555
+
3556
+ </dl>
3557
+
3558
+ #### ⚙️ Parameters
3559
+
3560
+ <dl>
3561
+
3562
+ <dd>
3563
+
3564
+ <dl>
3565
+
3566
+ <dd>
3567
+
3568
+ **request: `Hume.empathicVoice.PostedConfig`**
3569
+
3570
+ </dd>
3571
+
3572
+ </dl>
3573
+
3574
+ <dl>
3575
+
3576
+ <dd>
3577
+
3578
+ **requestOptions: `Configs.RequestOptions`**
3579
+
3580
+ </dd>
3581
+
3582
+ </dl>
3583
+
3584
+ </dd>
3585
+
3586
+ </dl>
3587
+
3588
+ </dd>
3589
+
3590
+ </dl>
3591
+ </details>
3592
+
3593
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">listConfigVersions</a>(id, { ...params }) -> Hume.ReturnPagedConfigs</code> </summary>
3594
+
3595
+ <dl>
3596
+
3597
+ <dd>
3598
+
3599
+ #### 🔌 Usage
3600
+
3601
+ <dl>
3602
+
3603
+ <dd>
3604
+
3605
+ <dl>
3606
+
3607
+ <dd>
3608
+
3609
+ ```ts
3610
+ await hume.empathicVoice.configs.listConfigVersions("id");
3611
+ ```
3612
+
3613
+ </dd>
3614
+
3615
+ </dl>
3616
+
3617
+ </dd>
3618
+
3619
+ </dl>
3620
+
3621
+ #### ⚙️ Parameters
3622
+
3623
+ <dl>
3624
+
3625
+ <dd>
3626
+
3627
+ <dl>
3628
+
3629
+ <dd>
3630
+
3631
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3632
+
3633
+ </dd>
3634
+
3635
+ </dl>
3636
+
3637
+ <dl>
3638
+
3639
+ <dd>
3640
+
3641
+ **request: `Hume.empathicVoice.ConfigsListConfigVersionsRequest`**
3642
+
3643
+ </dd>
3644
+
3645
+ </dl>
3646
+
3647
+ <dl>
3648
+
3649
+ <dd>
3650
+
3651
+ **requestOptions: `Configs.RequestOptions`**
3652
+
3653
+ </dd>
3654
+
3655
+ </dl>
3656
+
3657
+ </dd>
3658
+
3659
+ </dl>
3660
+
3661
+ </dd>
3662
+
3663
+ </dl>
3664
+ </details>
3665
+
3666
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">createConfigVersion</a>(id, { ...params }) -> Hume.ReturnConfig</code> </summary>
3667
+
3668
+ <dl>
3669
+
3670
+ <dd>
3671
+
3672
+ #### 🔌 Usage
3673
+
3674
+ <dl>
3675
+
3676
+ <dd>
3677
+
3678
+ <dl>
3679
+
3680
+ <dd>
3681
+
3682
+ ```ts
3683
+ await hume.empathicVoice.configs.createConfigVersion("id");
3684
+ ```
3685
+
3686
+ </dd>
3687
+
3688
+ </dl>
3689
+
3690
+ </dd>
3691
+
3692
+ </dl>
3693
+
3694
+ #### ⚙️ Parameters
3695
+
3696
+ <dl>
3697
+
3698
+ <dd>
3699
+
3700
+ <dl>
3701
+
3702
+ <dd>
3703
+
3704
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3705
+
3706
+ </dd>
3707
+
3708
+ </dl>
3709
+
3710
+ <dl>
3711
+
3712
+ <dd>
3713
+
3714
+ **request: `Hume.empathicVoice.PostedConfigVersion`**
3715
+
3716
+ </dd>
3717
+
3718
+ </dl>
3719
+
3720
+ <dl>
3721
+
3722
+ <dd>
3723
+
3724
+ **requestOptions: `Configs.RequestOptions`**
3725
+
3726
+ </dd>
3727
+
3728
+ </dl>
3729
+
3730
+ </dd>
3731
+
3732
+ </dl>
3733
+
3734
+ </dd>
3735
+
3736
+ </dl>
3737
+ </details>
3738
+
3739
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">deleteConfig</a>(id) -> void</code> </summary>
3740
+
3741
+ <dl>
3742
+
3743
+ <dd>
3744
+
3745
+ #### 🔌 Usage
3746
+
3747
+ <dl>
3748
+
3749
+ <dd>
3750
+
3751
+ <dl>
3752
+
3753
+ <dd>
3754
+
3755
+ ```ts
3756
+ await hume.empathicVoice.configs.deleteConfig("id");
3757
+ ```
3758
+
3759
+ </dd>
3760
+
3761
+ </dl>
3762
+
3763
+ </dd>
3764
+
3765
+ </dl>
3766
+
3767
+ #### ⚙️ Parameters
3768
+
3769
+ <dl>
3770
+
3771
+ <dd>
3772
+
3773
+ <dl>
3774
+
3775
+ <dd>
3776
+
3777
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3778
+
3779
+ </dd>
3780
+
3781
+ </dl>
3782
+
3783
+ <dl>
3784
+
3785
+ <dd>
3786
+
3787
+ **requestOptions: `Configs.RequestOptions`**
3788
+
3789
+ </dd>
3790
+
3791
+ </dl>
3792
+
3793
+ </dd>
3794
+
3795
+ </dl>
3796
+
3797
+ </dd>
3798
+
3799
+ </dl>
3800
+ </details>
3801
+
3802
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">updateConfigName</a>(id, { ...params }) -> string</code> </summary>
3803
+
3804
+ <dl>
3805
+
3806
+ <dd>
3807
+
3808
+ #### 🔌 Usage
3809
+
3810
+ <dl>
3811
+
3812
+ <dd>
3813
+
3814
+ <dl>
3815
+
3816
+ <dd>
3817
+
3818
+ ```ts
3819
+ await hume.empathicVoice.configs.updateConfigName("string", {
3820
+ name: "string",
3821
+ });
3822
+ ```
3823
+
3824
+ </dd>
3825
+
3826
+ </dl>
3827
+
3828
+ </dd>
3829
+
3830
+ </dl>
3831
+
3832
+ #### ⚙️ Parameters
3833
+
3834
+ <dl>
3835
+
3836
+ <dd>
3837
+
3838
+ <dl>
3839
+
3840
+ <dd>
3841
+
3842
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3843
+
3844
+ </dd>
3845
+
3846
+ </dl>
3847
+
3848
+ <dl>
3849
+
3850
+ <dd>
3851
+
3852
+ **request: `Hume.empathicVoice.PostedConfigName`**
3853
+
3854
+ </dd>
3855
+
3856
+ </dl>
3857
+
3858
+ <dl>
3859
+
3860
+ <dd>
3861
+
3862
+ **requestOptions: `Configs.RequestOptions`**
3863
+
3864
+ </dd>
3865
+
3866
+ </dl>
3867
+
3868
+ </dd>
3869
+
3870
+ </dl>
3871
+
3872
+ </dd>
3873
+
3874
+ </dl>
3875
+ </details>
3876
+
3877
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">getConfigVersion</a>(id, version) -> Hume.ReturnConfig</code> </summary>
3878
+
3879
+ <dl>
3880
+
3881
+ <dd>
3882
+
3883
+ #### 🔌 Usage
3884
+
3885
+ <dl>
3886
+
3887
+ <dd>
3888
+
3889
+ <dl>
3890
+
3891
+ <dd>
3892
+
3893
+ ```ts
3894
+ await hume.empathicVoice.configs.getConfigVersion("id", 1);
3895
+ ```
3896
+
3897
+ </dd>
3898
+
3899
+ </dl>
3900
+
3901
+ </dd>
3902
+
3903
+ </dl>
3904
+
3905
+ #### ⚙️ Parameters
3906
+
3907
+ <dl>
3908
+
3909
+ <dd>
3910
+
3911
+ <dl>
3912
+
3913
+ <dd>
3914
+
3915
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3916
+
3917
+ </dd>
3918
+
3919
+ </dl>
3920
+
3921
+ <dl>
3922
+
3923
+ <dd>
3924
+
3925
+ **version: `number`** — Version number for a config. Version numbers should be integers.
3926
+
3927
+ </dd>
3928
+
3929
+ </dl>
3930
+
3931
+ <dl>
3932
+
3933
+ <dd>
3934
+
3935
+ **requestOptions: `Configs.RequestOptions`**
3936
+
3937
+ </dd>
3938
+
3939
+ </dl>
3940
+
3941
+ </dd>
3942
+
3943
+ </dl>
3944
+
3945
+ </dd>
3946
+
3947
+ </dl>
3948
+ </details>
3949
+
3950
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">deleteConfigVersion</a>(id, version) -> void</code> </summary>
3951
+
3952
+ <dl>
3953
+
3954
+ <dd>
3955
+
3956
+ #### 🔌 Usage
3957
+
3958
+ <dl>
3959
+
3960
+ <dd>
3961
+
3962
+ <dl>
3963
+
3964
+ <dd>
3965
+
3966
+ ```ts
3967
+ await hume.empathicVoice.configs.deleteConfigVersion("id", 1);
3968
+ ```
3969
+
3970
+ </dd>
3971
+
3972
+ </dl>
3973
+
3974
+ </dd>
3975
+
3976
+ </dl>
3977
+
3978
+ #### ⚙️ Parameters
3979
+
3980
+ <dl>
3981
+
3982
+ <dd>
3983
+
3984
+ <dl>
3985
+
3986
+ <dd>
3987
+
3988
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
3989
+
3990
+ </dd>
3991
+
3992
+ </dl>
3993
+
3994
+ <dl>
3995
+
3996
+ <dd>
3997
+
3998
+ **version: `number`** — Version number for a config. Version numbers should be integers.
3999
+
4000
+ </dd>
4001
+
4002
+ </dl>
4003
+
4004
+ <dl>
4005
+
4006
+ <dd>
4007
+
4008
+ **requestOptions: `Configs.RequestOptions`**
4009
+
4010
+ </dd>
4011
+
4012
+ </dl>
4013
+
4014
+ </dd>
4015
+
4016
+ </dl>
4017
+
4018
+ </dd>
4019
+
4020
+ </dl>
4021
+ </details>
4022
+
4023
+ <details><summary> <code>hume.empathicVoice.configs.<a href="./src/api/resources/empathicVoice/resources/configs/client/Client.ts">updateConfigDescription</a>(id, version, { ...params }) -> Hume.ReturnConfig</code> </summary>
4024
+
4025
+ <dl>
4026
+
4027
+ <dd>
4028
+
4029
+ #### 🔌 Usage
4030
+
4031
+ <dl>
4032
+
4033
+ <dd>
4034
+
4035
+ <dl>
4036
+
4037
+ <dd>
4038
+
4039
+ ```ts
4040
+ await hume.empathicVoice.configs.updateConfigDescription("id", 1);
4041
+ ```
4042
+
4043
+ </dd>
4044
+
4045
+ </dl>
4046
+
4047
+ </dd>
4048
+
4049
+ </dl>
4050
+
4051
+ #### ⚙️ Parameters
4052
+
4053
+ <dl>
4054
+
4055
+ <dd>
4056
+
4057
+ <dl>
4058
+
4059
+ <dd>
4060
+
4061
+ **id: `string`** — Identifier for a config. Formatted as a UUID.
4062
+
4063
+ </dd>
4064
+
4065
+ </dl>
4066
+
4067
+ <dl>
4068
+
4069
+ <dd>
4070
+
4071
+ **version: `number`** — Version number for a config. Version numbers should be integers.
4072
+
4073
+ </dd>
4074
+
4075
+ </dl>
4076
+
4077
+ <dl>
4078
+
4079
+ <dd>
4080
+
4081
+ **request: `Hume.empathicVoice.PostedConfigVersionDescription`**
4082
+
4083
+ </dd>
4084
+
4085
+ </dl>
4086
+
4087
+ <dl>
4088
+
4089
+ <dd>
4090
+
4091
+ **requestOptions: `Configs.RequestOptions`**
4092
+
4093
+ </dd>
4094
+
4095
+ </dl>
4096
+
4097
+ </dd>
4098
+
4099
+ </dl>
4100
+
4101
+ </dd>
4102
+
4103
+ </dl>
4104
+ </details>
4105
+
4106
+ ## EmpathicVoice Chats
4107
+
4108
+ <details><summary> <code>hume.empathicVoice.chats.<a href="./src/api/resources/empathicVoice/resources/chats/client/Client.ts">listChats</a>({ ...params }) -> Hume.ReturnPagedChats</code> </summary>
4109
+
4110
+ <dl>
4111
+
4112
+ <dd>
4113
+
4114
+ #### 🔌 Usage
4115
+
4116
+ <dl>
4117
+
4118
+ <dd>
4119
+
4120
+ <dl>
4121
+
4122
+ <dd>
4123
+
4124
+ ```ts
4125
+ await hume.empathicVoice.chats.listChats();
4126
+ ```
4127
+
4128
+ </dd>
4129
+
4130
+ </dl>
4131
+
4132
+ </dd>
4133
+
4134
+ </dl>
4135
+
4136
+ #### ⚙️ Parameters
4137
+
4138
+ <dl>
4139
+
4140
+ <dd>
4141
+
4142
+ <dl>
4143
+
4144
+ <dd>
4145
+
4146
+ **request: `Hume.empathicVoice.ChatsListChatsRequest`**
4147
+
4148
+ </dd>
4149
+
4150
+ </dl>
4151
+
4152
+ <dl>
4153
+
4154
+ <dd>
4155
+
4156
+ **requestOptions: `Chats.RequestOptions`**
4157
+
4158
+ </dd>
4159
+
4160
+ </dl>
4161
+
4162
+ </dd>
4163
+
4164
+ </dl>
4165
+
4166
+ </dd>
4167
+
4168
+ </dl>
4169
+ </details>
4170
+
4171
+ <details><summary> <code>hume.empathicVoice.chats.<a href="./src/api/resources/empathicVoice/resources/chats/client/Client.ts">listChatEvents</a>(id, { ...params }) -> Hume.ReturnChatPagedEvents</code> </summary>
4172
+
4173
+ <dl>
4174
+
4175
+ <dd>
4176
+
4177
+ #### 🔌 Usage
4178
+
4179
+ <dl>
4180
+
4181
+ <dd>
4182
+
4183
+ <dl>
4184
+
4185
+ <dd>
4186
+
4187
+ ```ts
4188
+ await hume.empathicVoice.chats.listChatEvents("id");
4189
+ ```
4190
+
4191
+ </dd>
4192
+
4193
+ </dl>
4194
+
4195
+ </dd>
4196
+
4197
+ </dl>
4198
+
4199
+ #### ⚙️ Parameters
4200
+
4201
+ <dl>
4202
+
4203
+ <dd>
4204
+
4205
+ <dl>
4206
+
4207
+ <dd>
4208
+
4209
+ **id: `string`** — Identifier for a chat. Formatted as a UUID.
4210
+
4211
+ </dd>
4212
+
4213
+ </dl>
4214
+
4215
+ <dl>
4216
+
4217
+ <dd>
4218
+
4219
+ **request: `Hume.empathicVoice.ChatsListChatEventsRequest`**
4220
+
4221
+ </dd>
4222
+
4223
+ </dl>
4224
+
4225
+ <dl>
4226
+
4227
+ <dd>
4228
+
4229
+ **requestOptions: `Chats.RequestOptions`**
4230
+
4231
+ </dd>
4232
+
4233
+ </dl>
4234
+
4235
+ </dd>
4236
+
4237
+ </dl>
4238
+
4239
+ </dd>
4240
+
4241
+ </dl>
4242
+ </details>
4243
+
4244
+ ## EmpathicVoice ChatGroups
4245
+
4246
+ <details><summary> <code>hume.empathicVoice.chatGroups.<a href="./src/api/resources/empathicVoice/resources/chatGroups/client/Client.ts">listChatGroups</a>({ ...params }) -> Hume.ReturnPagedChatGroups</code> </summary>
4247
+
4248
+ <dl>
4249
+
4250
+ <dd>
4251
+
4252
+ #### 🔌 Usage
4253
+
4254
+ <dl>
4255
+
4256
+ <dd>
4257
+
4258
+ <dl>
4259
+
4260
+ <dd>
4261
+
4262
+ ```ts
4263
+ await hume.empathicVoice.chatGroups.listChatGroups();
4264
+ ```
4265
+
4266
+ </dd>
4267
+
4268
+ </dl>
4269
+
4270
+ </dd>
4271
+
4272
+ </dl>
4273
+
4274
+ #### ⚙️ Parameters
4275
+
4276
+ <dl>
4277
+
4278
+ <dd>
4279
+
4280
+ <dl>
4281
+
4282
+ <dd>
4283
+
4284
+ **request: `Hume.empathicVoice.ChatGroupsListChatGroupsRequest`**
4285
+
4286
+ </dd>
4287
+
4288
+ </dl>
4289
+
4290
+ <dl>
4291
+
4292
+ <dd>
4293
+
4294
+ **requestOptions: `ChatGroups.RequestOptions`**
4295
+
4296
+ </dd>
4297
+
4298
+ </dl>
4299
+
4300
+ </dd>
4301
+
4302
+ </dl>
4303
+
4304
+ </dd>
4305
+
4306
+ </dl>
4307
+ </details>
4308
+
4309
+ <details><summary> <code>hume.empathicVoice.chatGroups.<a href="./src/api/resources/empathicVoice/resources/chatGroups/client/Client.ts">listChatGroupEvents</a>(id, { ...params }) -> Hume.ReturnChatGroupPagedEvents</code> </summary>
4310
+
4311
+ <dl>
4312
+
4313
+ <dd>
4314
+
4315
+ #### 🔌 Usage
4316
+
4317
+ <dl>
4318
+
4319
+ <dd>
4320
+
4321
+ <dl>
4322
+
4323
+ <dd>
4324
+
4325
+ ```ts
4326
+ await hume.empathicVoice.chatGroups.listChatGroupEvents("id");
4327
+ ```
4328
+
4329
+ </dd>
4330
+
4331
+ </dl>
4332
+
4333
+ </dd>
4334
+
4335
+ </dl>
4336
+
4337
+ #### ⚙️ Parameters
4338
+
4339
+ <dl>
4340
+
4341
+ <dd>
4342
+
4343
+ <dl>
4344
+
4345
+ <dd>
4346
+
4347
+ **id: `string`** — Identifier for a chat. Formatted as a UUID.
4348
+
4349
+ </dd>
4350
+
4351
+ </dl>
4352
+
4353
+ <dl>
4354
+
4355
+ <dd>
4356
+
4357
+ **request: `Hume.empathicVoice.ChatGroupsListChatGroupEventsRequest`**
4358
+
4359
+ </dd>
4360
+
4361
+ </dl>
4362
+
4363
+ <dl>
4364
+
4365
+ <dd>
4366
+
4367
+ **requestOptions: `ChatGroups.RequestOptions`**
4368
+
4369
+ </dd>
4370
+
4371
+ </dl>
4372
+
4373
+ </dd>
4374
+
4375
+ </dl>
4376
+
4377
+ </dd>
4378
+
4379
+ </dl>
4380
+ </details>
4381
+
4382
+ ## ExpressionMeasurement Batch
4383
+
4384
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">listJobs</a>({ ...params }) -> Hume.UnionJob[]</code> </summary>
4385
+
4386
+ <dl>
4387
+
4388
+ <dd>
4389
+
4390
+ #### 📝 Description
4391
+
4392
+ <dl>
4393
+
4394
+ <dd>
4395
+
4396
+ <dl>
4397
+
4398
+ <dd>
4399
+
4400
+ Sort and filter jobs.
4401
+
4402
+ </dd>
4403
+
4404
+ </dl>
4405
+
4406
+ </dd>
4407
+
4408
+ </dl>
4409
+
4410
+ #### 🔌 Usage
4411
+
4412
+ <dl>
4413
+
4414
+ <dd>
4415
+
4416
+ <dl>
4417
+
4418
+ <dd>
4419
+
4420
+ ```ts
4421
+ await hume.expressionMeasurement.batch.listJobs();
4422
+ ```
4423
+
4424
+ </dd>
4425
+
4426
+ </dl>
4427
+
4428
+ </dd>
4429
+
4430
+ </dl>
4431
+
4432
+ #### ⚙️ Parameters
4433
+
4434
+ <dl>
4435
+
4436
+ <dd>
4437
+
4438
+ <dl>
4439
+
4440
+ <dd>
4441
+
4442
+ **request: `Hume.expressionMeasurement.BatchListJobsRequest`**
4443
+
4444
+ </dd>
4445
+
4446
+ </dl>
4447
+
4448
+ <dl>
4449
+
4450
+ <dd>
4451
+
4452
+ **requestOptions: `Batch.RequestOptions`**
4453
+
4454
+ </dd>
4455
+
4456
+ </dl>
4457
+
4458
+ </dd>
4459
+
4460
+ </dl>
4461
+
4462
+ </dd>
4463
+
4464
+ </dl>
4465
+ </details>
4466
+
4467
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">startInferenceJob</a>({ ...params }) -> Hume.JobId</code> </summary>
4468
+
4469
+ <dl>
4470
+
4471
+ <dd>
4472
+
4473
+ #### 📝 Description
4474
+
4475
+ <dl>
4476
+
4477
+ <dd>
4478
+
4479
+ <dl>
4480
+
4481
+ <dd>
4482
+
4483
+ Start a new measurement inference job.
4484
+
4485
+ </dd>
4486
+
4487
+ </dl>
4488
+
4489
+ </dd>
4490
+
4491
+ </dl>
4492
+
4493
+ #### 🔌 Usage
4494
+
4495
+ <dl>
4496
+
4497
+ <dd>
4498
+
4499
+ <dl>
4500
+
4501
+ <dd>
4502
+
4503
+ ```ts
4504
+ await hume.expressionMeasurement.batch.startInferenceJob({
4505
+ urls: ["https://hume-tutorials.s3.amazonaws.com/faces.zip"],
4506
+ notify: true,
4507
+ });
4508
+ ```
4509
+
4510
+ </dd>
4511
+
4512
+ </dl>
4513
+
4514
+ </dd>
4515
+
4516
+ </dl>
4517
+
4518
+ #### ⚙️ Parameters
4519
+
4520
+ <dl>
4521
+
4522
+ <dd>
4523
+
4524
+ <dl>
4525
+
4526
+ <dd>
4527
+
4528
+ **request: `Hume.InferenceBaseRequest`**
4529
+
4530
+ </dd>
4531
+
4532
+ </dl>
4533
+
4534
+ <dl>
4535
+
4536
+ <dd>
4537
+
4538
+ **requestOptions: `Batch.RequestOptions`**
4539
+
4540
+ </dd>
4541
+
4542
+ </dl>
4543
+
4544
+ </dd>
4545
+
4546
+ </dl>
4547
+
4548
+ </dd>
4549
+
4550
+ </dl>
4551
+ </details>
4552
+
4553
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">getJobDetails</a>(id) -> Hume.UnionJob</code> </summary>
4554
+
4555
+ <dl>
4556
+
4557
+ <dd>
4558
+
4559
+ #### 📝 Description
4560
+
4561
+ <dl>
4562
+
4563
+ <dd>
4564
+
4565
+ <dl>
4566
+
4567
+ <dd>
4568
+
4569
+ Get the request details and state of a given job.
4570
+
4571
+ </dd>
4572
+
4573
+ </dl>
4574
+
4575
+ </dd>
4576
+
4577
+ </dl>
4578
+
4579
+ #### 🔌 Usage
4580
+
4581
+ <dl>
4582
+
4583
+ <dd>
4584
+
4585
+ <dl>
4586
+
4587
+ <dd>
4588
+
4589
+ ```ts
4590
+ await hume.expressionMeasurement.batch.getJobDetails("job_id");
4591
+ ```
4592
+
4593
+ </dd>
4594
+
4595
+ </dl>
4596
+
4597
+ </dd>
4598
+
4599
+ </dl>
4600
+
4601
+ #### ⚙️ Parameters
4602
+
4603
+ <dl>
4604
+
4605
+ <dd>
4606
+
4607
+ <dl>
4608
+
4609
+ <dd>
4610
+
4611
+ **id: `string`**
4612
+
4613
+ </dd>
4614
+
4615
+ </dl>
4616
+
4617
+ <dl>
4618
+
4619
+ <dd>
4620
+
4621
+ **requestOptions: `Batch.RequestOptions`**
4622
+
4623
+ </dd>
4624
+
4625
+ </dl>
4626
+
4627
+ </dd>
4628
+
4629
+ </dl>
4630
+
4631
+ </dd>
4632
+
4633
+ </dl>
4634
+ </details>
4635
+
4636
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">getJobPredictions</a>(id) -> Hume.UnionPredictResult[]</code> </summary>
4637
+
4638
+ <dl>
4639
+
4640
+ <dd>
4641
+
4642
+ #### 📝 Description
4643
+
4644
+ <dl>
4645
+
4646
+ <dd>
4647
+
4648
+ <dl>
4649
+
4650
+ <dd>
4651
+
4652
+ Get the JSON predictions of a completed measurement or custom models inference job.
4653
+
4654
+ </dd>
4655
+
4656
+ </dl>
4657
+
4658
+ </dd>
4659
+
4660
+ </dl>
4661
+
4662
+ #### 🔌 Usage
4663
+
4664
+ <dl>
4665
+
4666
+ <dd>
4667
+
4668
+ <dl>
4669
+
4670
+ <dd>
4671
+
4672
+ ```ts
4673
+ await hume.expressionMeasurement.batch.getJobPredictions("job_id");
4674
+ ```
4675
+
4676
+ </dd>
4677
+
4678
+ </dl>
4679
+
4680
+ </dd>
4681
+
4682
+ </dl>
4683
+
4684
+ #### ⚙️ Parameters
4685
+
4686
+ <dl>
4687
+
4688
+ <dd>
4689
+
4690
+ <dl>
4691
+
4692
+ <dd>
4693
+
4694
+ **id: `string`**
4695
+
4696
+ </dd>
4697
+
4698
+ </dl>
4699
+
4700
+ <dl>
4701
+
4702
+ <dd>
4703
+
4704
+ **requestOptions: `Batch.RequestOptions`**
4705
+
4706
+ </dd>
4707
+
4708
+ </dl>
4709
+
4710
+ </dd>
4711
+
4712
+ </dl>
4713
+
4714
+ </dd>
4715
+
4716
+ </dl>
4717
+ </details>
4718
+
4719
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">getJobArtifacts</a>(id) -> stream.Readable</code> </summary>
4720
+
4721
+ <dl>
4722
+
4723
+ <dd>
4724
+
4725
+ #### 📝 Description
4726
+
4727
+ <dl>
4728
+
4729
+ <dd>
4730
+
4731
+ <dl>
4732
+
4733
+ <dd>
4734
+
4735
+ Get the artifacts ZIP of a completed measurement or custom models inference job.
4736
+
4737
+ </dd>
4738
+
4739
+ </dl>
4740
+
4741
+ </dd>
4742
+
4743
+ </dl>
4744
+
4745
+ #### 🔌 Usage
4746
+
4747
+ <dl>
4748
+
4749
+ <dd>
4750
+
4751
+ <dl>
4752
+
4753
+ <dd>
4754
+
4755
+ ```ts
4756
+ await hume.expressionMeasurement.batch.getJobArtifacts("string");
4757
+ ```
4758
+
4759
+ </dd>
4760
+
4761
+ </dl>
4762
+
4763
+ </dd>
4764
+
4765
+ </dl>
4766
+
4767
+ #### ⚙️ Parameters
4768
+
4769
+ <dl>
4770
+
4771
+ <dd>
4772
+
4773
+ <dl>
4774
+
4775
+ <dd>
4776
+
4777
+ **id: `string`**
4778
+
4779
+ </dd>
4780
+
4781
+ </dl>
4782
+
4783
+ <dl>
4784
+
4785
+ <dd>
4786
+
4787
+ **requestOptions: `Batch.RequestOptions`**
4788
+
4789
+ </dd>
4790
+
4791
+ </dl>
4792
+
4793
+ </dd>
4794
+
4795
+ </dl>
4796
+
4797
+ </dd>
4798
+
4799
+ </dl>
4800
+ </details>
4801
+
4802
+ <details><summary> <code>hume.expressionMeasurement.batch.<a href="./src/api/resources/expressionMeasurement/resources/batch/client/Client.ts">startInferenceJobFromLocalFile</a>(file, { ...params }) -> Hume.JobId</code> </summary>
4803
+
4804
+ <dl>
4805
+
4806
+ <dd>
4807
+
4808
+ #### 📝 Description
4809
+
4810
+ <dl>
4811
+
4812
+ <dd>
4813
+
4814
+ <dl>
4815
+
4816
+ <dd>
4817
+
4818
+ Start a new batch inference job.
4819
+
4820
+ </dd>
4821
+
4822
+ </dl>
4823
+
4824
+ </dd>
4825
+
4826
+ </dl>
4827
+
4828
+ #### 🔌 Usage
4829
+
4830
+ <dl>
4831
+
4832
+ <dd>
4833
+
4834
+ <dl>
4835
+
4836
+ <dd>
4837
+
4838
+ ```ts
4839
+ await hume.expressionMeasurement.batch.startInferenceJobFromLocalFile([fs.createReadStream("/path/to/your/file")], {});
4840
+ ```
4841
+
4842
+ </dd>
4843
+
4844
+ </dl>
4845
+
4846
+ </dd>
4847
+
4848
+ </dl>
4849
+
4850
+ #### ⚙️ Parameters
4851
+
4852
+ <dl>
4853
+
4854
+ <dd>
4855
+
4856
+ <dl>
4857
+
4858
+ <dd>
4859
+
4860
+ **file: `File[] | fs.ReadStream[]`**
4861
+
4862
+ </dd>
4863
+
4864
+ </dl>
4865
+
4866
+ <dl>
4867
+
4868
+ <dd>
4869
+
4870
+ **request: `Hume.expressionMeasurement.BatchStartInferenceJobFromLocalFileRequest`**
4871
+
4872
+ </dd>
4873
+
4874
+ </dl>
4875
+
4876
+ <dl>
4877
+
4878
+ <dd>
4879
+
4880
+ **requestOptions: `Batch.RequestOptions`**
4881
+
4882
+ </dd>
4883
+
4884
+ </dl>
4885
+
4886
+ </dd>
4887
+
4888
+ </dl>
4889
+
4890
+ </dd>
4891
+
4892
+ </dl>
4893
+ </details>