hume 0.9.10 → 0.9.11

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 (349) hide show
  1. package/.mock/definition/empathic-voice/__package__.yml +87 -26
  2. package/.mock/definition/empathic-voice/chat.yml +5 -1
  3. package/.mock/definition/empathic-voice/chatGroups.yml +6 -0
  4. package/.mock/definition/empathic-voice/chatWebhooks.yml +24 -13
  5. package/.mock/definition/empathic-voice/chats.yml +3 -0
  6. package/.mock/definition/empathic-voice/configs.yml +8 -1
  7. package/.mock/definition/empathic-voice/customVoices.yml +23 -12
  8. package/.mock/definition/empathic-voice/prompts.yml +29 -21
  9. package/.mock/definition/empathic-voice/tools.yml +34 -27
  10. package/.mock/definition/expression-measurement/batch/__package__.yml +23 -0
  11. package/.mock/definition/expression-measurement/stream/__package__.yml +0 -435
  12. package/.mock/definition/expression-measurement/v0StreamModels.yml +437 -0
  13. package/.mock/definition/tts/__package__.yml +394 -0
  14. package/.mock/definition/tts/voices.yml +47 -0
  15. package/.mock/fern.config.json +1 -1
  16. package/Client.d.ts +3 -0
  17. package/Client.js +5 -0
  18. package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
  19. package/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
  20. package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  21. package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -1
  22. package/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +11 -6
  23. package/api/resources/empathicVoice/resources/customVoices/client/Client.js +17 -12
  24. package/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +6 -0
  25. package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +11 -11
  26. package/api/resources/empathicVoice/resources/prompts/client/Client.js +21 -21
  27. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
  28. package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
  29. package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +9 -9
  30. package/api/resources/empathicVoice/resources/tools/client/Client.js +18 -18
  31. package/api/resources/empathicVoice/types/Context.d.ts +2 -2
  32. package/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  33. package/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
  34. package/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
  35. package/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +6 -2
  36. package/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  37. package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  38. package/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +6 -2
  39. package/api/resources/empathicVoice/types/SessionSettings.d.ts +7 -7
  40. package/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +5 -0
  41. package/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +2 -2
  42. package/api/resources/index.d.ts +2 -1
  43. package/api/resources/index.js +3 -2
  44. package/api/resources/tts/client/Client.d.ts +86 -0
  45. package/api/resources/tts/client/Client.js +218 -0
  46. package/api/resources/tts/client/index.d.ts +1 -0
  47. package/api/resources/tts/client/index.js +2 -0
  48. package/api/resources/tts/errors/UnprocessableEntityError.d.ts +8 -0
  49. package/api/resources/tts/errors/UnprocessableEntityError.js +41 -0
  50. package/api/resources/tts/errors/index.d.ts +1 -0
  51. package/api/resources/tts/errors/index.js +17 -0
  52. package/api/resources/tts/index.d.ts +4 -0
  53. package/api/resources/tts/index.js +20 -0
  54. package/api/resources/tts/resources/index.d.ts +2 -0
  55. package/api/resources/tts/resources/index.js +31 -0
  56. package/api/resources/tts/resources/voices/client/Client.d.ts +43 -0
  57. package/api/resources/tts/resources/voices/client/Client.js +126 -0
  58. package/api/resources/tts/resources/voices/client/index.d.ts +1 -0
  59. package/api/resources/tts/resources/voices/client/index.js +17 -0
  60. package/api/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +16 -0
  61. package/api/resources/tts/resources/voices/client/requests/PostedVoice.js +5 -0
  62. package/api/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
  63. package/api/resources/tts/resources/voices/client/requests/index.js +2 -0
  64. package/api/resources/tts/resources/voices/index.d.ts +1 -0
  65. package/api/resources/tts/resources/voices/index.js +17 -0
  66. package/api/resources/tts/types/AudioEncoding.d.ts +10 -0
  67. package/api/resources/tts/types/AudioEncoding.js +5 -0
  68. package/api/resources/tts/types/AudioFormatType.d.ts +9 -0
  69. package/api/resources/tts/types/AudioFormatType.js +11 -0
  70. package/api/resources/tts/types/Format.d.ts +19 -0
  71. package/api/resources/tts/types/Format.js +5 -0
  72. package/api/resources/tts/types/FormatMp3.d.ts +5 -0
  73. package/api/resources/tts/types/FormatMp3.js +5 -0
  74. package/api/resources/tts/types/FormatPcm.d.ts +5 -0
  75. package/api/resources/tts/types/FormatPcm.js +5 -0
  76. package/api/resources/tts/types/FormatWav.d.ts +5 -0
  77. package/api/resources/tts/types/FormatWav.js +5 -0
  78. package/api/resources/tts/types/HttpValidationError.d.ts +7 -0
  79. package/api/resources/tts/types/HttpValidationError.js +5 -0
  80. package/api/resources/tts/types/PostedContext.d.ts +8 -0
  81. package/api/resources/tts/types/PostedContext.js +5 -0
  82. package/api/resources/tts/types/PostedContextWithGenerationId.d.ts +7 -0
  83. package/api/resources/tts/types/PostedContextWithGenerationId.js +5 -0
  84. package/api/resources/tts/types/PostedContextWithUtterances.d.ts +7 -0
  85. package/api/resources/tts/types/PostedContextWithUtterances.js +5 -0
  86. package/api/resources/tts/types/PostedTts.d.ts +14 -0
  87. package/api/resources/tts/types/PostedTts.js +5 -0
  88. package/api/resources/tts/types/PostedTtsRecord.d.ts +11 -0
  89. package/api/resources/tts/types/PostedTtsRecord.js +5 -0
  90. package/api/resources/tts/types/PostedUtterance.d.ts +22 -0
  91. package/api/resources/tts/types/PostedUtterance.js +5 -0
  92. package/api/resources/tts/types/PostedUtteranceVoice.d.ts +5 -0
  93. package/api/resources/tts/types/PostedUtteranceVoice.js +5 -0
  94. package/api/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +20 -0
  95. package/api/resources/tts/types/PostedUtteranceVoiceWithId.js +5 -0
  96. package/api/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +20 -0
  97. package/api/resources/tts/types/PostedUtteranceVoiceWithName.js +5 -0
  98. package/api/resources/tts/types/ReturnGeneration.d.ts +17 -0
  99. package/api/resources/tts/types/ReturnGeneration.js +5 -0
  100. package/api/resources/tts/types/ReturnTts.d.ts +9 -0
  101. package/api/resources/tts/types/ReturnTts.js +5 -0
  102. package/api/resources/tts/types/ReturnVoice.d.ts +9 -0
  103. package/api/resources/tts/types/ReturnVoice.js +5 -0
  104. package/api/resources/tts/types/Snippet.d.ts +11 -0
  105. package/api/resources/tts/types/Snippet.js +5 -0
  106. package/api/resources/tts/types/ValidationError.d.ts +9 -0
  107. package/api/resources/tts/types/ValidationError.js +5 -0
  108. package/api/resources/tts/types/ValidationErrorLocItem.d.ts +4 -0
  109. package/api/resources/tts/types/ValidationErrorLocItem.js +5 -0
  110. package/api/resources/tts/types/VoiceProvider.d.ts +8 -0
  111. package/api/resources/tts/types/VoiceProvider.js +10 -0
  112. package/api/resources/tts/types/index.d.ts +23 -0
  113. package/api/resources/tts/types/index.js +39 -0
  114. package/dist/Client.d.ts +3 -0
  115. package/dist/Client.js +5 -0
  116. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
  117. package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
  118. package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  119. package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -1
  120. package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +11 -6
  121. package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.js +17 -12
  122. package/dist/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +6 -0
  123. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +11 -11
  124. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +21 -21
  125. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
  126. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
  127. package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +9 -9
  128. package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +18 -18
  129. package/dist/api/resources/empathicVoice/types/Context.d.ts +2 -2
  130. package/dist/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
  131. package/dist/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
  132. package/dist/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
  133. package/dist/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +6 -2
  134. package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
  135. package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
  136. package/dist/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +6 -2
  137. package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +7 -7
  138. package/dist/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +5 -0
  139. package/dist/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +2 -2
  140. package/dist/api/resources/index.d.ts +2 -1
  141. package/dist/api/resources/index.js +3 -2
  142. package/dist/api/resources/tts/client/Client.d.ts +86 -0
  143. package/dist/api/resources/tts/client/Client.js +218 -0
  144. package/dist/api/resources/tts/client/index.d.ts +1 -0
  145. package/dist/api/resources/tts/client/index.js +2 -0
  146. package/dist/api/resources/tts/errors/UnprocessableEntityError.d.ts +8 -0
  147. package/dist/api/resources/tts/errors/UnprocessableEntityError.js +41 -0
  148. package/dist/api/resources/tts/errors/index.d.ts +1 -0
  149. package/dist/api/resources/tts/errors/index.js +17 -0
  150. package/dist/api/resources/tts/index.d.ts +4 -0
  151. package/dist/api/resources/tts/index.js +20 -0
  152. package/dist/api/resources/tts/resources/index.d.ts +2 -0
  153. package/dist/api/resources/tts/resources/index.js +31 -0
  154. package/dist/api/resources/tts/resources/voices/client/Client.d.ts +43 -0
  155. package/dist/api/resources/tts/resources/voices/client/Client.js +126 -0
  156. package/dist/api/resources/tts/resources/voices/client/index.d.ts +1 -0
  157. package/dist/api/resources/tts/resources/voices/client/index.js +17 -0
  158. package/dist/api/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +16 -0
  159. package/dist/api/resources/tts/resources/voices/client/requests/PostedVoice.js +5 -0
  160. package/dist/api/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
  161. package/dist/api/resources/tts/resources/voices/client/requests/index.js +2 -0
  162. package/dist/api/resources/tts/resources/voices/index.d.ts +1 -0
  163. package/dist/api/resources/tts/resources/voices/index.js +17 -0
  164. package/dist/api/resources/tts/types/AudioEncoding.d.ts +10 -0
  165. package/dist/api/resources/tts/types/AudioEncoding.js +5 -0
  166. package/dist/api/resources/tts/types/AudioFormatType.d.ts +9 -0
  167. package/dist/api/resources/tts/types/AudioFormatType.js +11 -0
  168. package/dist/api/resources/tts/types/Format.d.ts +19 -0
  169. package/dist/api/resources/tts/types/Format.js +5 -0
  170. package/dist/api/resources/tts/types/FormatMp3.d.ts +5 -0
  171. package/dist/api/resources/tts/types/FormatMp3.js +5 -0
  172. package/dist/api/resources/tts/types/FormatPcm.d.ts +5 -0
  173. package/dist/api/resources/tts/types/FormatPcm.js +5 -0
  174. package/dist/api/resources/tts/types/FormatWav.d.ts +5 -0
  175. package/dist/api/resources/tts/types/FormatWav.js +5 -0
  176. package/dist/api/resources/tts/types/HttpValidationError.d.ts +7 -0
  177. package/dist/api/resources/tts/types/HttpValidationError.js +5 -0
  178. package/dist/api/resources/tts/types/PostedContext.d.ts +8 -0
  179. package/dist/api/resources/tts/types/PostedContext.js +5 -0
  180. package/dist/api/resources/tts/types/PostedContextWithGenerationId.d.ts +7 -0
  181. package/dist/api/resources/tts/types/PostedContextWithGenerationId.js +5 -0
  182. package/dist/api/resources/tts/types/PostedContextWithUtterances.d.ts +7 -0
  183. package/dist/api/resources/tts/types/PostedContextWithUtterances.js +5 -0
  184. package/dist/api/resources/tts/types/PostedTts.d.ts +14 -0
  185. package/dist/api/resources/tts/types/PostedTts.js +5 -0
  186. package/dist/api/resources/tts/types/PostedTtsRecord.d.ts +11 -0
  187. package/dist/api/resources/tts/types/PostedTtsRecord.js +5 -0
  188. package/dist/api/resources/tts/types/PostedUtterance.d.ts +22 -0
  189. package/dist/api/resources/tts/types/PostedUtterance.js +5 -0
  190. package/dist/api/resources/tts/types/PostedUtteranceVoice.d.ts +5 -0
  191. package/dist/api/resources/tts/types/PostedUtteranceVoice.js +5 -0
  192. package/dist/api/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +20 -0
  193. package/dist/api/resources/tts/types/PostedUtteranceVoiceWithId.js +5 -0
  194. package/dist/api/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +20 -0
  195. package/dist/api/resources/tts/types/PostedUtteranceVoiceWithName.js +5 -0
  196. package/dist/api/resources/tts/types/ReturnGeneration.d.ts +17 -0
  197. package/dist/api/resources/tts/types/ReturnGeneration.js +5 -0
  198. package/dist/api/resources/tts/types/ReturnTts.d.ts +9 -0
  199. package/dist/api/resources/tts/types/ReturnTts.js +5 -0
  200. package/dist/api/resources/tts/types/ReturnVoice.d.ts +9 -0
  201. package/dist/api/resources/tts/types/ReturnVoice.js +5 -0
  202. package/dist/api/resources/tts/types/Snippet.d.ts +11 -0
  203. package/dist/api/resources/tts/types/Snippet.js +5 -0
  204. package/dist/api/resources/tts/types/ValidationError.d.ts +9 -0
  205. package/dist/api/resources/tts/types/ValidationError.js +5 -0
  206. package/dist/api/resources/tts/types/ValidationErrorLocItem.d.ts +4 -0
  207. package/dist/api/resources/tts/types/ValidationErrorLocItem.js +5 -0
  208. package/dist/api/resources/tts/types/VoiceProvider.d.ts +8 -0
  209. package/dist/api/resources/tts/types/VoiceProvider.js +10 -0
  210. package/dist/api/resources/tts/types/index.d.ts +23 -0
  211. package/dist/api/resources/tts/types/index.js +39 -0
  212. package/dist/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.d.ts → createPromptVersion.d.ts} +1 -1
  213. package/dist/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
  214. package/dist/serialization/resources/empathicVoice/resources/prompts/client/index.js +2 -2
  215. package/dist/serialization/resources/index.d.ts +2 -1
  216. package/dist/serialization/resources/index.js +3 -2
  217. package/dist/serialization/resources/tts/index.d.ts +2 -0
  218. package/dist/serialization/resources/tts/index.js +18 -0
  219. package/dist/serialization/resources/tts/resources/index.d.ts +2 -0
  220. package/dist/serialization/resources/tts/resources/index.js +31 -0
  221. package/dist/serialization/resources/tts/resources/voices/client/index.d.ts +1 -0
  222. package/dist/serialization/resources/tts/resources/voices/client/index.js +17 -0
  223. package/dist/serialization/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +13 -0
  224. package/dist/serialization/resources/tts/resources/voices/client/requests/PostedVoice.js +34 -0
  225. package/dist/serialization/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
  226. package/dist/serialization/resources/tts/resources/voices/client/requests/index.js +5 -0
  227. package/dist/serialization/resources/tts/resources/voices/index.d.ts +1 -0
  228. package/dist/serialization/resources/tts/resources/voices/index.js +17 -0
  229. package/dist/serialization/resources/tts/types/AudioEncoding.d.ts +14 -0
  230. package/dist/serialization/resources/tts/types/AudioEncoding.js +35 -0
  231. package/dist/serialization/resources/tts/types/AudioFormatType.d.ts +10 -0
  232. package/dist/serialization/resources/tts/types/AudioFormatType.js +31 -0
  233. package/dist/serialization/resources/tts/types/Format.d.ts +22 -0
  234. package/dist/serialization/resources/tts/types/Format.js +43 -0
  235. package/dist/serialization/resources/tts/types/FormatMp3.d.ts +11 -0
  236. package/dist/serialization/resources/tts/types/FormatMp3.js +31 -0
  237. package/dist/serialization/resources/tts/types/FormatPcm.d.ts +11 -0
  238. package/dist/serialization/resources/tts/types/FormatPcm.js +31 -0
  239. package/dist/serialization/resources/tts/types/FormatWav.d.ts +11 -0
  240. package/dist/serialization/resources/tts/types/FormatWav.js +31 -0
  241. package/dist/serialization/resources/tts/types/HttpValidationError.d.ts +13 -0
  242. package/dist/serialization/resources/tts/types/HttpValidationError.js +34 -0
  243. package/dist/serialization/resources/tts/types/PostedContext.d.ts +12 -0
  244. package/dist/serialization/resources/tts/types/PostedContext.js +33 -0
  245. package/dist/serialization/resources/tts/types/PostedContextWithGenerationId.d.ts +12 -0
  246. package/dist/serialization/resources/tts/types/PostedContextWithGenerationId.js +33 -0
  247. package/dist/serialization/resources/tts/types/PostedContextWithUtterances.d.ts +13 -0
  248. package/dist/serialization/resources/tts/types/PostedContextWithUtterances.js +34 -0
  249. package/dist/serialization/resources/tts/types/PostedTts.d.ts +18 -0
  250. package/dist/serialization/resources/tts/types/PostedTts.js +39 -0
  251. package/dist/serialization/resources/tts/types/PostedTtsRecord.d.ts +17 -0
  252. package/dist/serialization/resources/tts/types/PostedTtsRecord.js +38 -0
  253. package/dist/serialization/resources/tts/types/PostedUtterance.d.ts +15 -0
  254. package/dist/serialization/resources/tts/types/PostedUtterance.js +36 -0
  255. package/dist/serialization/resources/tts/types/PostedUtteranceVoice.d.ts +12 -0
  256. package/dist/serialization/resources/tts/types/PostedUtteranceVoice.js +33 -0
  257. package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +14 -0
  258. package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithId.js +35 -0
  259. package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +14 -0
  260. package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithName.js +35 -0
  261. package/dist/serialization/resources/tts/types/ReturnGeneration.d.ts +19 -0
  262. package/dist/serialization/resources/tts/types/ReturnGeneration.js +40 -0
  263. package/dist/serialization/resources/tts/types/ReturnTts.d.ts +14 -0
  264. package/dist/serialization/resources/tts/types/ReturnTts.js +35 -0
  265. package/dist/serialization/resources/tts/types/ReturnVoice.d.ts +13 -0
  266. package/dist/serialization/resources/tts/types/ReturnVoice.js +34 -0
  267. package/dist/serialization/resources/tts/types/Snippet.d.ts +14 -0
  268. package/dist/serialization/resources/tts/types/Snippet.js +35 -0
  269. package/dist/serialization/resources/tts/types/ValidationError.d.ts +15 -0
  270. package/dist/serialization/resources/tts/types/ValidationError.js +36 -0
  271. package/dist/serialization/resources/tts/types/ValidationErrorLocItem.d.ts +10 -0
  272. package/dist/serialization/resources/tts/types/ValidationErrorLocItem.js +31 -0
  273. package/dist/serialization/resources/tts/types/VoiceProvider.d.ts +10 -0
  274. package/dist/serialization/resources/tts/types/VoiceProvider.js +31 -0
  275. package/dist/serialization/resources/tts/types/index.d.ts +23 -0
  276. package/dist/serialization/resources/tts/types/index.js +39 -0
  277. package/dist/version.d.ts +1 -1
  278. package/dist/version.js +1 -1
  279. package/package.json +1 -1
  280. package/reference.md +489 -178
  281. package/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.d.ts → createPromptVersion.d.ts} +1 -1
  282. package/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
  283. package/serialization/resources/empathicVoice/resources/prompts/client/index.js +2 -2
  284. package/serialization/resources/index.d.ts +2 -1
  285. package/serialization/resources/index.js +3 -2
  286. package/serialization/resources/tts/index.d.ts +2 -0
  287. package/serialization/resources/tts/index.js +18 -0
  288. package/serialization/resources/tts/resources/index.d.ts +2 -0
  289. package/serialization/resources/tts/resources/index.js +31 -0
  290. package/serialization/resources/tts/resources/voices/client/index.d.ts +1 -0
  291. package/serialization/resources/tts/resources/voices/client/index.js +17 -0
  292. package/serialization/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +13 -0
  293. package/serialization/resources/tts/resources/voices/client/requests/PostedVoice.js +34 -0
  294. package/serialization/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
  295. package/serialization/resources/tts/resources/voices/client/requests/index.js +5 -0
  296. package/serialization/resources/tts/resources/voices/index.d.ts +1 -0
  297. package/serialization/resources/tts/resources/voices/index.js +17 -0
  298. package/serialization/resources/tts/types/AudioEncoding.d.ts +14 -0
  299. package/serialization/resources/tts/types/AudioEncoding.js +35 -0
  300. package/serialization/resources/tts/types/AudioFormatType.d.ts +10 -0
  301. package/serialization/resources/tts/types/AudioFormatType.js +31 -0
  302. package/serialization/resources/tts/types/Format.d.ts +22 -0
  303. package/serialization/resources/tts/types/Format.js +43 -0
  304. package/serialization/resources/tts/types/FormatMp3.d.ts +11 -0
  305. package/serialization/resources/tts/types/FormatMp3.js +31 -0
  306. package/serialization/resources/tts/types/FormatPcm.d.ts +11 -0
  307. package/serialization/resources/tts/types/FormatPcm.js +31 -0
  308. package/serialization/resources/tts/types/FormatWav.d.ts +11 -0
  309. package/serialization/resources/tts/types/FormatWav.js +31 -0
  310. package/serialization/resources/tts/types/HttpValidationError.d.ts +13 -0
  311. package/serialization/resources/tts/types/HttpValidationError.js +34 -0
  312. package/serialization/resources/tts/types/PostedContext.d.ts +12 -0
  313. package/serialization/resources/tts/types/PostedContext.js +33 -0
  314. package/serialization/resources/tts/types/PostedContextWithGenerationId.d.ts +12 -0
  315. package/serialization/resources/tts/types/PostedContextWithGenerationId.js +33 -0
  316. package/serialization/resources/tts/types/PostedContextWithUtterances.d.ts +13 -0
  317. package/serialization/resources/tts/types/PostedContextWithUtterances.js +34 -0
  318. package/serialization/resources/tts/types/PostedTts.d.ts +18 -0
  319. package/serialization/resources/tts/types/PostedTts.js +39 -0
  320. package/serialization/resources/tts/types/PostedTtsRecord.d.ts +17 -0
  321. package/serialization/resources/tts/types/PostedTtsRecord.js +38 -0
  322. package/serialization/resources/tts/types/PostedUtterance.d.ts +15 -0
  323. package/serialization/resources/tts/types/PostedUtterance.js +36 -0
  324. package/serialization/resources/tts/types/PostedUtteranceVoice.d.ts +12 -0
  325. package/serialization/resources/tts/types/PostedUtteranceVoice.js +33 -0
  326. package/serialization/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +14 -0
  327. package/serialization/resources/tts/types/PostedUtteranceVoiceWithId.js +35 -0
  328. package/serialization/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +14 -0
  329. package/serialization/resources/tts/types/PostedUtteranceVoiceWithName.js +35 -0
  330. package/serialization/resources/tts/types/ReturnGeneration.d.ts +19 -0
  331. package/serialization/resources/tts/types/ReturnGeneration.js +40 -0
  332. package/serialization/resources/tts/types/ReturnTts.d.ts +14 -0
  333. package/serialization/resources/tts/types/ReturnTts.js +35 -0
  334. package/serialization/resources/tts/types/ReturnVoice.d.ts +13 -0
  335. package/serialization/resources/tts/types/ReturnVoice.js +34 -0
  336. package/serialization/resources/tts/types/Snippet.d.ts +14 -0
  337. package/serialization/resources/tts/types/Snippet.js +35 -0
  338. package/serialization/resources/tts/types/ValidationError.d.ts +15 -0
  339. package/serialization/resources/tts/types/ValidationError.js +36 -0
  340. package/serialization/resources/tts/types/ValidationErrorLocItem.d.ts +10 -0
  341. package/serialization/resources/tts/types/ValidationErrorLocItem.js +31 -0
  342. package/serialization/resources/tts/types/VoiceProvider.d.ts +10 -0
  343. package/serialization/resources/tts/types/VoiceProvider.js +31 -0
  344. package/serialization/resources/tts/types/index.d.ts +23 -0
  345. package/serialization/resources/tts/types/index.js +39 -0
  346. package/version.d.ts +1 -1
  347. package/version.js +1 -1
  348. /package/dist/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.js → createPromptVersion.js} +0 -0
  349. /package/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.js → createPromptVersion.js} +0 -0
@@ -12,8 +12,9 @@ service:
12
12
  Fetches a paginated list of **Custom Voices**.
13
13
 
14
14
 
15
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
16
- for details on creating a custom voice.
15
+ Refer to our [voices
16
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
17
+ details on creating a custom voice.
17
18
  source:
18
19
  openapi: stenographer-openapi.json
19
20
  display-name: List custom voices
@@ -47,6 +48,7 @@ service:
47
48
  response:
48
49
  docs: Success
49
50
  type: root.ReturnPagedCustomVoices
51
+ status-code: 200
50
52
  errors:
51
53
  - root.BadRequestError
52
54
  examples:
@@ -73,8 +75,9 @@ service:
73
75
  configuration](/reference/empathic-voice-interface-evi/configs/create-config).
74
76
 
75
77
 
76
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
77
- for details on creating a custom voice.
78
+ Refer to our [voices
79
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
80
+ details on creating a custom voice.
78
81
  source:
79
82
  openapi: stenographer-openapi.json
80
83
  display-name: Create custom voice
@@ -84,6 +87,7 @@ service:
84
87
  response:
85
88
  docs: Created
86
89
  type: root.ReturnCustomVoice
90
+ status-code: 201
87
91
  errors:
88
92
  - root.BadRequestError
89
93
  examples:
@@ -119,8 +123,9 @@ service:
119
123
  Fetches a specific **Custom Voice** by ID.
120
124
 
121
125
 
122
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
123
- for details on creating a custom voice.
126
+ Refer to our [voices
127
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
128
+ details on creating a custom voice.
124
129
  source:
125
130
  openapi: stenographer-openapi.json
126
131
  path-parameters:
@@ -131,6 +136,7 @@ service:
131
136
  response:
132
137
  docs: Success
133
138
  type: root.ReturnCustomVoice
139
+ status-code: 200
134
140
  errors:
135
141
  - root.BadRequestError
136
142
  examples:
@@ -165,8 +171,9 @@ service:
165
171
  Voice**.
166
172
 
167
173
 
168
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
169
- for details on creating a custom voice.
174
+ Refer to our [voices
175
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
176
+ details on creating a custom voice.
170
177
  source:
171
178
  openapi: stenographer-openapi.json
172
179
  path-parameters:
@@ -180,6 +187,7 @@ service:
180
187
  response:
181
188
  docs: Created
182
189
  type: root.ReturnCustomVoice
190
+ status-code: 201
183
191
  errors:
184
192
  - root.BadRequestError
185
193
  examples:
@@ -217,8 +225,9 @@ service:
217
225
  Deletes a **Custom Voice** and its versions.
218
226
 
219
227
 
220
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
221
- for details on creating a custom voice.
228
+ Refer to our [voices
229
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
230
+ details on creating a custom voice.
222
231
  source:
223
232
  openapi: stenographer-openapi.json
224
233
  path-parameters:
@@ -239,8 +248,9 @@ service:
239
248
  Updates the name of a **Custom Voice**.
240
249
 
241
250
 
242
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
243
- for details on creating a custom voice.
251
+ Refer to our [voices
252
+ guide](/docs/empathic-voice-interface-evi/configuration/voices) for
253
+ details on creating a custom voice.
244
254
  source:
245
255
  openapi: stenographer-openapi.json
246
256
  path-parameters:
@@ -262,6 +272,7 @@ service:
262
272
  response:
263
273
  docs: Success
264
274
  type: text
275
+ status-code: 200
265
276
  errors:
266
277
  - root.BadRequestError
267
278
  source:
@@ -13,8 +13,8 @@ service:
13
13
 
14
14
 
15
15
  See our [prompting
16
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
17
- crafting your system prompt.
16
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
17
+ on crafting your system prompt.
18
18
  pagination:
19
19
  offset: $request.page_number
20
20
  results: $response.prompts_page
@@ -54,6 +54,7 @@ service:
54
54
  response:
55
55
  docs: Success
56
56
  type: root.ReturnPagedPrompts
57
+ status-code: 200
57
58
  errors:
58
59
  - root.BadRequestError
59
60
  examples:
@@ -106,8 +107,8 @@ service:
106
107
 
107
108
 
108
109
  See our [prompting
109
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
110
- crafting your system prompt.
110
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
111
+ on crafting your system prompt.
111
112
  source:
112
113
  openapi: stenographer-openapi.json
113
114
  display-name: Create prompt
@@ -136,11 +137,12 @@ service:
136
137
 
137
138
 
138
139
  For help writing a system prompt, see our [Prompting
139
- Guide](/docs/empathic-voice-interface-evi/prompting).
140
+ Guide](/docs/empathic-voice-interface-evi/guides/prompting).
140
141
  content-type: application/json
141
142
  response:
142
143
  docs: Created
143
144
  type: optional<root.ReturnPrompt>
145
+ status-code: 201
144
146
  errors:
145
147
  - root.BadRequestError
146
148
  examples:
@@ -158,6 +160,7 @@ service:
158
160
  id: af699d45-2985-42cc-91b9-af9e5da3bac5
159
161
  version: 0
160
162
  version_type: FIXED
163
+ version_description: null
161
164
  name: Weather Assistant Prompt
162
165
  created_on: 1722633247488
163
166
  modified_on: 1722633247488
@@ -177,8 +180,8 @@ service:
177
180
 
178
181
 
179
182
  See our [prompting
180
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
181
- crafting your system prompt.
183
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
184
+ on crafting your system prompt.
182
185
  source:
183
186
  openapi: stenographer-openapi.json
184
187
  path-parameters:
@@ -219,6 +222,7 @@ service:
219
222
  response:
220
223
  docs: Success
221
224
  type: root.ReturnPagedPrompts
225
+ status-code: 200
222
226
  errors:
223
227
  - root.BadRequestError
224
228
  examples:
@@ -244,7 +248,7 @@ service:
244
248
  technical jargon. Provide temperature, precipitation, wind
245
249
  conditions, and any weather alerts. Include helpful tips if
246
250
  severe weather is expected.</role>
247
- create-prompt-verison:
251
+ create-prompt-version:
248
252
  path: /v0/evi/prompts/{id}
249
253
  method: POST
250
254
  auth: true
@@ -253,8 +257,8 @@ service:
253
257
 
254
258
 
255
259
  See our [prompting
256
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
257
- crafting your system prompt.
260
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
261
+ on crafting your system prompt.
258
262
  source:
259
263
  openapi: stenographer-openapi.json
260
264
  path-parameters:
@@ -285,11 +289,12 @@ service:
285
289
 
286
290
 
287
291
  For help writing a system prompt, see our [Prompting
288
- Guide](/docs/empathic-voice-interface-evi/prompting).
292
+ Guide](/docs/empathic-voice-interface-evi/guides/prompting).
289
293
  content-type: application/json
290
294
  response:
291
295
  docs: Created
292
296
  type: optional<root.ReturnPrompt>
297
+ status-code: 201
293
298
  errors:
294
299
  - root.BadRequestError
295
300
  examples:
@@ -329,8 +334,8 @@ service:
329
334
 
330
335
 
331
336
  See our [prompting
332
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
333
- crafting your system prompt.
337
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
338
+ on crafting your system prompt.
334
339
  source:
335
340
  openapi: stenographer-openapi.json
336
341
  path-parameters:
@@ -352,8 +357,8 @@ service:
352
357
 
353
358
 
354
359
  See our [prompting
355
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
356
- crafting your system prompt.
360
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
361
+ on crafting your system prompt.
357
362
  source:
358
363
  openapi: stenographer-openapi.json
359
364
  path-parameters:
@@ -372,6 +377,7 @@ service:
372
377
  response:
373
378
  docs: Success
374
379
  type: text
380
+ status-code: 200
375
381
  errors:
376
382
  - root.BadRequestError
377
383
  examples:
@@ -388,8 +394,8 @@ service:
388
394
 
389
395
 
390
396
  See our [prompting
391
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
392
- crafting your system prompt.
397
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
398
+ on crafting your system prompt.
393
399
  source:
394
400
  openapi: stenographer-openapi.json
395
401
  path-parameters:
@@ -415,6 +421,7 @@ service:
415
421
  response:
416
422
  docs: Success
417
423
  type: optional<root.ReturnPrompt>
424
+ status-code: 200
418
425
  errors:
419
426
  - root.BadRequestError
420
427
  examples:
@@ -446,8 +453,8 @@ service:
446
453
 
447
454
 
448
455
  See our [prompting
449
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
450
- crafting your system prompt.
456
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
457
+ on crafting your system prompt.
451
458
  source:
452
459
  openapi: stenographer-openapi.json
453
460
  path-parameters:
@@ -485,8 +492,8 @@ service:
485
492
 
486
493
 
487
494
  See our [prompting
488
- guide](/docs/empathic-voice-interface-evi/phone-calling) for tips on
489
- crafting your system prompt.
495
+ guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
496
+ on crafting your system prompt.
490
497
  source:
491
498
  openapi: stenographer-openapi.json
492
499
  path-parameters:
@@ -520,6 +527,7 @@ service:
520
527
  response:
521
528
  docs: Success
522
529
  type: optional<root.ReturnPrompt>
530
+ status-code: 200
523
531
  errors:
524
532
  - root.BadRequestError
525
533
  examples:
@@ -13,9 +13,9 @@ service:
13
13
 
14
14
 
15
15
  Refer to our [tool
16
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
17
- for comprehensive instructions on defining and integrating tools into
18
- EVI.
16
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
17
+ guide for comprehensive instructions on defining and integrating tools
18
+ into EVI.
19
19
  pagination:
20
20
  offset: $request.page_number
21
21
  results: $response.tools_page
@@ -58,6 +58,7 @@ service:
58
58
  response:
59
59
  docs: Success
60
60
  type: root.ReturnPagedUserDefinedTools
61
+ status-code: 200
61
62
  errors:
62
63
  - root.BadRequestError
63
64
  examples:
@@ -115,9 +116,9 @@ service:
115
116
 
116
117
 
117
118
  Refer to our [tool
118
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
119
- for comprehensive instructions on defining and integrating tools into
120
- EVI.
119
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
120
+ guide for comprehensive instructions on defining and integrating tools
121
+ into EVI.
121
122
  source:
122
123
  openapi: stenographer-openapi.json
123
124
  display-name: Create tool
@@ -158,6 +159,7 @@ service:
158
159
  response:
159
160
  docs: Created
160
161
  type: optional<root.ReturnUserDefinedTool>
162
+ status-code: 201
161
163
  errors:
162
164
  - root.BadRequestError
163
165
  examples:
@@ -205,9 +207,9 @@ service:
205
207
 
206
208
 
207
209
  Refer to our [tool
208
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
209
- for comprehensive instructions on defining and integrating tools into
210
- EVI.
210
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
211
+ guide for comprehensive instructions on defining and integrating tools
212
+ into EVI.
211
213
  source:
212
214
  openapi: stenographer-openapi.json
213
215
  path-parameters:
@@ -248,6 +250,7 @@ service:
248
250
  response:
249
251
  docs: Success
250
252
  type: root.ReturnPagedUserDefinedTools
253
+ status-code: 200
251
254
  errors:
252
255
  - root.BadRequestError
253
256
  examples:
@@ -287,9 +290,9 @@ service:
287
290
 
288
291
 
289
292
  Refer to our [tool
290
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
291
- for comprehensive instructions on defining and integrating tools into
292
- EVI.
293
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
294
+ guide for comprehensive instructions on defining and integrating tools
295
+ into EVI.
293
296
  source:
294
297
  openapi: stenographer-openapi.json
295
298
  path-parameters:
@@ -331,6 +334,7 @@ service:
331
334
  response:
332
335
  docs: Created
333
336
  type: optional<root.ReturnUserDefinedTool>
337
+ status-code: 201
334
338
  errors:
335
339
  - root.BadRequestError
336
340
  examples:
@@ -379,9 +383,9 @@ service:
379
383
 
380
384
 
381
385
  Refer to our [tool
382
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
383
- for comprehensive instructions on defining and integrating tools into
384
- EVI.
386
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
387
+ guide for comprehensive instructions on defining and integrating tools
388
+ into EVI.
385
389
  source:
386
390
  openapi: stenographer-openapi.json
387
391
  path-parameters:
@@ -403,9 +407,9 @@ service:
403
407
 
404
408
 
405
409
  Refer to our [tool
406
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
407
- for comprehensive instructions on defining and integrating tools into
408
- EVI.
410
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
411
+ guide for comprehensive instructions on defining and integrating tools
412
+ into EVI.
409
413
  source:
410
414
  openapi: stenographer-openapi.json
411
415
  path-parameters:
@@ -424,6 +428,7 @@ service:
424
428
  response:
425
429
  docs: Success
426
430
  type: text
431
+ status-code: 200
427
432
  errors:
428
433
  - root.BadRequestError
429
434
  examples:
@@ -440,9 +445,9 @@ service:
440
445
 
441
446
 
442
447
  Refer to our [tool
443
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
444
- for comprehensive instructions on defining and integrating tools into
445
- EVI.
448
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
449
+ guide for comprehensive instructions on defining and integrating tools
450
+ into EVI.
446
451
  source:
447
452
  openapi: stenographer-openapi.json
448
453
  path-parameters:
@@ -467,6 +472,7 @@ service:
467
472
  response:
468
473
  docs: Success
469
474
  type: optional<root.ReturnUserDefinedTool>
475
+ status-code: 200
470
476
  errors:
471
477
  - root.BadRequestError
472
478
  examples:
@@ -503,9 +509,9 @@ service:
503
509
 
504
510
 
505
511
  Refer to our [tool
506
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
507
- for comprehensive instructions on defining and integrating tools into
508
- EVI.
512
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
513
+ guide for comprehensive instructions on defining and integrating tools
514
+ into EVI.
509
515
  source:
510
516
  openapi: stenographer-openapi.json
511
517
  path-parameters:
@@ -542,9 +548,9 @@ service:
542
548
 
543
549
 
544
550
  Refer to our [tool
545
- use](/docs/empathic-voice-interface-evi/tool-use#function-calling) guide
546
- for comprehensive instructions on defining and integrating tools into
547
- EVI.
551
+ use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
552
+ guide for comprehensive instructions on defining and integrating tools
553
+ into EVI.
548
554
  source:
549
555
  openapi: stenographer-openapi.json
550
556
  path-parameters:
@@ -577,6 +583,7 @@ service:
577
583
  response:
578
584
  docs: Success
579
585
  type: optional<root.ReturnUserDefinedTool>
586
+ status-code: 200
580
587
  errors:
581
588
  - root.BadRequestError
582
589
  examples:
@@ -15,6 +15,7 @@ service:
15
15
  query-parameters:
16
16
  limit:
17
17
  type: optional<integer>
18
+ default: 50
18
19
  docs: The maximum number of jobs to include in the response.
19
20
  status:
20
21
  type: optional<Status>
@@ -43,6 +44,7 @@ service:
43
44
  `timestamp_ms`.
44
45
  timestamp_ms:
45
46
  type: optional<long>
47
+ default: 1704319392247
46
48
  docs: |-
47
49
  Provide a timestamp in milliseconds to filter jobs.
48
50
 
@@ -79,11 +81,13 @@ service:
79
81
  response:
80
82
  docs: ''
81
83
  type: list<UnionJob>
84
+ status-code: 200
82
85
  examples:
83
86
  - response:
84
87
  body:
85
88
  - job_id: job_id
86
89
  request:
90
+ callback_url: null
87
91
  files:
88
92
  - filename: filename
89
93
  md5sum: md5sum
@@ -91,6 +95,8 @@ service:
91
95
  models:
92
96
  burst: {}
93
97
  face:
98
+ descriptions: null
99
+ facs: null
94
100
  fps_pred: 3
95
101
  identify_faces: false
96
102
  min_face_size: 60
@@ -100,11 +106,14 @@ service:
100
106
  language:
101
107
  granularity: word
102
108
  identify_speakers: false
109
+ sentiment: null
110
+ toxicity: null
103
111
  ner:
104
112
  identify_speakers: false
105
113
  prosody:
106
114
  granularity: utterance
107
115
  identify_speakers: false
116
+ window: null
108
117
  notify: true
109
118
  text: []
110
119
  urls:
@@ -131,6 +140,7 @@ service:
131
140
  response:
132
141
  docs: ''
133
142
  type: JobId
143
+ status-code: 200
134
144
  property: job_id
135
145
  examples:
136
146
  - request:
@@ -155,6 +165,7 @@ service:
155
165
  response:
156
166
  docs: ''
157
167
  type: UnionJob
168
+ status-code: 200
158
169
  examples:
159
170
  - name: Inference
160
171
  path-parameters:
@@ -164,10 +175,13 @@ service:
164
175
  type: INFERENCE
165
176
  job_id: job_id
166
177
  request:
178
+ callback_url: null
167
179
  files: []
168
180
  models:
169
181
  burst: {}
170
182
  face:
183
+ descriptions: null
184
+ facs: null
171
185
  fps_pred: 3
172
186
  identify_faces: false
173
187
  min_face_size: 60
@@ -177,11 +191,14 @@ service:
177
191
  language:
178
192
  granularity: word
179
193
  identify_speakers: false
194
+ sentiment: null
195
+ toxicity: null
180
196
  ner:
181
197
  identify_speakers: false
182
198
  prosody:
183
199
  granularity: utterance
184
200
  identify_speakers: false
201
+ window: null
185
202
  notify: true
186
203
  text: []
187
204
  urls:
@@ -208,6 +225,7 @@ service:
208
225
  response:
209
226
  docs: ''
210
227
  type: list<UnionPredictResult>
228
+ status-code: 200
211
229
  examples:
212
230
  - path-parameters:
213
231
  id: job_id
@@ -221,6 +239,7 @@ service:
221
239
  - file: faces/100.jpg
222
240
  models:
223
241
  face:
242
+ metadata: null
224
243
  grouped_predictions:
225
244
  - id: unknown
226
245
  predictions:
@@ -329,6 +348,8 @@ service:
329
348
  score: 0.1559651643037796
330
349
  - name: Triumph
331
350
  score: 0.01955239288508892
351
+ facs: null
352
+ descriptions: null
332
353
  errors: []
333
354
  get-job-artifacts:
334
355
  path: /v0/batch/jobs/{id}/artifacts
@@ -345,6 +366,7 @@ service:
345
366
  response:
346
367
  docs: ''
347
368
  type: file
369
+ status-code: 200
348
370
  start-inference-job-from-local-file:
349
371
  path: /v0/batch/jobs
350
372
  method: POST
@@ -375,6 +397,7 @@ service:
375
397
  response:
376
398
  docs: ''
377
399
  type: JobId
400
+ status-code: 200
378
401
  property: job_id
379
402
  examples:
380
403
  - request: {}