hume 0.9.2 → 0.9.3

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 (140) hide show
  1. package/.mock/definition/api.yml +6 -6
  2. package/.mock/definition/empathic-voice/__package__.yml +2810 -2703
  3. package/.mock/definition/empathic-voice/chat.yml +143 -143
  4. package/.mock/definition/empathic-voice/chatGroups.yml +579 -508
  5. package/.mock/definition/empathic-voice/chats.yml +490 -449
  6. package/.mock/definition/empathic-voice/configs.yml +913 -871
  7. package/.mock/definition/empathic-voice/customVoices.yml +255 -234
  8. package/.mock/definition/empathic-voice/prompts.yml +523 -526
  9. package/.mock/definition/empathic-voice/tools.yml +588 -588
  10. package/.mock/definition/expression-measurement/batch/__package__.yml +1758 -1758
  11. package/.mock/definition/expression-measurement/stream/__package__.yml +486 -485
  12. package/.mock/fern.config.json +3 -3
  13. package/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +11 -0
  14. package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +77 -3
  15. package/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsGetAudioRequest.d.ts +25 -0
  16. package/api/resources/empathicVoice/resources/chatGroups/client/requests/index.d.ts +1 -0
  17. package/api/resources/empathicVoice/resources/chats/client/Client.d.ts +10 -0
  18. package/api/resources/empathicVoice/resources/chats/client/Client.js +63 -2
  19. package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  20. package/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +1 -1
  21. package/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +2 -7
  22. package/api/resources/empathicVoice/resources/customVoices/client/Client.js +8 -13
  23. package/api/resources/empathicVoice/resources/customVoices/client/requests/CustomVoicesListCustomVoicesRequest.d.ts +1 -1
  24. package/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +0 -6
  25. package/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
  26. package/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +2 -2
  27. package/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
  28. package/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +1 -1
  29. package/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -1
  30. package/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +2 -2
  31. package/api/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.d.ts +3 -2
  32. package/api/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.js +2 -1
  33. package/api/resources/empathicVoice/types/PostedCustomVoiceParameters.d.ts +51 -9
  34. package/api/resources/empathicVoice/types/PostedVoice.d.ts +1 -1
  35. package/api/resources/empathicVoice/types/ReturnCustomVoice.d.ts +2 -2
  36. package/api/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.d.ts +3 -2
  37. package/api/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.js +2 -1
  38. package/api/resources/empathicVoice/types/ReturnCustomVoiceParameters.d.ts +51 -9
  39. package/api/resources/empathicVoice/types/ReturnVoice.d.ts +1 -1
  40. package/api/resources/empathicVoice/types/UserInput.d.ts +3 -1
  41. package/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +2 -1
  42. package/api/resources/empathicVoice/types/VoiceNameEnum.js +1 -0
  43. package/api/resources/empathicVoice/types/index.d.ts +0 -2
  44. package/api/resources/empathicVoice/types/index.js +0 -2
  45. package/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
  46. package/api/resources/index.d.ts +1 -1
  47. package/api/resources/index.js +2 -2
  48. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +11 -0
  49. package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +77 -3
  50. package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsGetAudioRequest.d.ts +25 -0
  51. package/dist/api/resources/empathicVoice/resources/chatGroups/client/requests/index.d.ts +1 -0
  52. package/dist/api/resources/empathicVoice/resources/chats/client/Client.d.ts +10 -0
  53. package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +63 -2
  54. package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
  55. package/dist/api/resources/empathicVoice/resources/configs/client/requests/ConfigsListConfigsRequest.d.ts +1 -1
  56. package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +2 -7
  57. package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.js +8 -13
  58. package/dist/api/resources/empathicVoice/resources/customVoices/client/requests/CustomVoicesListCustomVoicesRequest.d.ts +1 -1
  59. package/dist/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +0 -6
  60. package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
  61. package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PromptsListPromptsRequest.d.ts +2 -2
  62. package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
  63. package/dist/api/resources/empathicVoice/resources/tools/client/requests/ToolsListToolsRequest.d.ts +1 -1
  64. package/dist/api/resources/empathicVoice/types/AudioOutput.d.ts +1 -1
  65. package/dist/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +2 -2
  66. package/dist/api/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.d.ts +3 -2
  67. package/dist/api/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.js +2 -1
  68. package/dist/api/resources/empathicVoice/types/PostedCustomVoiceParameters.d.ts +51 -9
  69. package/dist/api/resources/empathicVoice/types/PostedVoice.d.ts +1 -1
  70. package/dist/api/resources/empathicVoice/types/ReturnCustomVoice.d.ts +2 -2
  71. package/dist/api/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.d.ts +3 -2
  72. package/dist/api/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.js +2 -1
  73. package/dist/api/resources/empathicVoice/types/ReturnCustomVoiceParameters.d.ts +51 -9
  74. package/dist/api/resources/empathicVoice/types/ReturnVoice.d.ts +1 -1
  75. package/dist/api/resources/empathicVoice/types/UserInput.d.ts +3 -1
  76. package/dist/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +2 -1
  77. package/dist/api/resources/empathicVoice/types/VoiceNameEnum.js +1 -0
  78. package/dist/api/resources/empathicVoice/types/index.d.ts +0 -2
  79. package/dist/api/resources/empathicVoice/types/index.js +0 -2
  80. package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
  81. package/dist/api/resources/index.d.ts +1 -1
  82. package/dist/api/resources/index.js +2 -2
  83. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
  84. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.js +1 -1
  85. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.d.ts +1 -1
  86. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.js +1 -1
  87. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceParameters.d.ts +9 -2
  88. package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceParameters.js +9 -2
  89. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +1 -1
  90. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +1 -1
  91. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.d.ts +1 -1
  92. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.js +1 -1
  93. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoiceParameters.d.ts +9 -2
  94. package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoiceParameters.js +9 -2
  95. package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +1 -1
  96. package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.js +1 -0
  97. package/dist/serialization/resources/empathicVoice/types/index.d.ts +0 -2
  98. package/dist/serialization/resources/empathicVoice/types/index.js +0 -2
  99. package/dist/serialization/resources/index.d.ts +1 -1
  100. package/dist/serialization/resources/index.js +2 -2
  101. package/dist/version.d.ts +1 -1
  102. package/dist/version.js +1 -1
  103. package/package.json +1 -1
  104. package/reference.md +573 -607
  105. package/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
  106. package/serialization/resources/empathicVoice/types/PostedCustomVoice.js +1 -1
  107. package/serialization/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.d.ts +1 -1
  108. package/serialization/resources/empathicVoice/types/PostedCustomVoiceBaseVoice.js +1 -1
  109. package/serialization/resources/empathicVoice/types/PostedCustomVoiceParameters.d.ts +9 -2
  110. package/serialization/resources/empathicVoice/types/PostedCustomVoiceParameters.js +9 -2
  111. package/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +1 -1
  112. package/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +1 -1
  113. package/serialization/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.d.ts +1 -1
  114. package/serialization/resources/empathicVoice/types/ReturnCustomVoiceBaseVoice.js +1 -1
  115. package/serialization/resources/empathicVoice/types/ReturnCustomVoiceParameters.d.ts +9 -2
  116. package/serialization/resources/empathicVoice/types/ReturnCustomVoiceParameters.js +9 -2
  117. package/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +1 -1
  118. package/serialization/resources/empathicVoice/types/VoiceNameEnum.js +1 -0
  119. package/serialization/resources/empathicVoice/types/index.d.ts +0 -2
  120. package/serialization/resources/empathicVoice/types/index.js +0 -2
  121. package/serialization/resources/index.d.ts +1 -1
  122. package/serialization/resources/index.js +2 -2
  123. package/version.d.ts +1 -1
  124. package/version.js +1 -1
  125. package/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +0 -9
  126. package/api/resources/empathicVoice/types/VoiceArgs.d.ts +0 -13
  127. package/dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +0 -9
  128. package/dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.js +0 -5
  129. package/dist/api/resources/empathicVoice/types/VoiceArgs.d.ts +0 -13
  130. package/dist/api/resources/empathicVoice/types/VoiceArgs.js +0 -5
  131. package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +0 -15
  132. package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +0 -36
  133. package/dist/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +0 -19
  134. package/dist/serialization/resources/empathicVoice/types/VoiceArgs.js +0 -40
  135. package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +0 -15
  136. package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +0 -36
  137. package/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +0 -19
  138. package/serialization/resources/empathicVoice/types/VoiceArgs.js +0 -40
  139. /package/api/resources/empathicVoice/{types/ExtendedVoiceArgs.js → resources/chatGroups/client/requests/ChatGroupsGetAudioRequest.js} +0 -0
  140. /package/{api/resources/empathicVoice/types/VoiceArgs.js → dist/api/resources/empathicVoice/resources/chatGroups/client/requests/ChatGroupsGetAudioRequest.js} +0 -0
@@ -1,238 +1,259 @@
1
1
  imports:
2
- root: __package__.yml
2
+ root: __package__.yml
3
3
  service:
4
- auth: false
5
- base-path: ""
6
- endpoints:
7
- list-custom-voices:
8
- path: /v0/evi/custom_voices
9
- method: GET
10
- auth: true
11
- docs: >-
12
- Fetches a paginated list of **Custom Voices**.
13
-
14
-
15
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
16
- for details on creating a custom voice.
17
- display-name: List custom voices
18
- request:
19
- name: CustomVoicesListCustomVoicesRequest
20
- query-parameters:
21
- page_number:
22
- type: optional<integer>
23
- docs: >-
24
- Specifies the page number to retrieve, enabling pagination.
25
-
26
-
27
- This parameter uses zero-based indexing. For example, setting
28
- `page_number` to 0 retrieves the first page of results (items 0-9
29
- if `page_size` is 10), setting `page_number` to 1 retrieves the
30
- second page (items 10-19), and so on. Defaults to 0, which
31
- retrieves the first page.
32
- page_size:
33
- type: optional<integer>
34
- docs: >-
35
- Specifies the maximum number of results to include per page,
36
- enabling pagination. The value must be between 1 and 100,
37
- inclusive.
38
-
39
-
40
- For example, if `page_size` is set to 10, each page will include
41
- up to 10 items. Defaults to 10.
42
- name:
43
- type: optional<string>
44
- docs: Filter to only include custom voices with this name.
45
- response:
46
- docs: Success
47
- type: root.ReturnPagedCustomVoices
48
- errors:
49
- - root.BadRequestError
50
- examples:
51
- - response:
52
- body:
53
- page_number: 1
54
- page_size: 1
55
- total_pages: 1
56
- custom_voices_page:
57
- - id: id
58
- version: 1
59
- name: name
60
- created_on: 1000000
61
- modified_on: 1000000
62
- base_voice: ITO
63
- parameter_model: 20240715-4parameter
64
- parameters: {}
65
- create-custom-voice:
66
- path: /v0/evi/custom_voices
67
- method: POST
68
- auth: true
69
- docs: >-
70
- Creates a **Custom Voice** that can be added to an [EVI
71
- configuration](/reference/empathic-voice-interface-evi/configs/create-config).
72
-
73
-
74
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
75
- for details on creating a custom voice.
76
- display-name: Create custom voice
77
- request:
78
- body: root.PostedCustomVoice
79
- content-type: application/json
80
- response:
81
- docs: Created
82
- type: root.ReturnCustomVoice
83
- errors:
84
- - root.BadRequestError
85
- examples:
86
- - request:
87
- name: name
88
- base_voice: ITO
89
- parameter_model: 20240715-4parameter
90
- response:
91
- body:
92
- id: id
93
- version: 1
94
- name: name
95
- created_on: 1000000
96
- modified_on: 1000000
97
- base_voice: ITO
98
- parameter_model: 20240715-4parameter
99
- parameters:
100
- gender: 1
101
- huskiness: 1
102
- nasality: 1
103
- pitch: 1
104
- get-custom-voice:
105
- path: /v0/evi/custom_voices/{id}
106
- method: GET
107
- auth: true
108
- docs: >-
109
- Fetches a specific **Custom Voice** by ID.
110
-
111
-
112
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
113
- for details on creating a custom voice.
114
- path-parameters:
115
- id:
116
- type: string
117
- docs: Identifier for a Custom Voice. Formatted as a UUID.
118
- display-name: Get specific custom voice by ID
119
- response:
120
- docs: Success
121
- type: root.ReturnCustomVoice
122
- errors:
123
- - root.BadRequestError
124
- examples:
125
- - path-parameters:
126
- id: id
127
- response:
128
- body:
129
- id: id
130
- version: 1
131
- name: name
132
- created_on: 1000000
133
- modified_on: 1000000
134
- base_voice: ITO
135
- parameter_model: 20240715-4parameter
136
- parameters:
137
- gender: 1
138
- huskiness: 1
139
- nasality: 1
140
- pitch: 1
141
- create-custom-voice-version:
142
- path: /v0/evi/custom_voices/{id}
143
- method: POST
144
- auth: true
145
- docs: >-
146
- Updates a **Custom Voice** by creating a new version of the **Custom
147
- Voice**.
148
-
149
-
150
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
151
- for details on creating a custom voice.
152
- path-parameters:
153
- id:
154
- type: string
155
- docs: Identifier for a Custom Voice. Formatted as a UUID.
156
- display-name: Create new version of existing custom voice
157
- request:
158
- body: root.PostedCustomVoice
159
- content-type: application/json
160
- response:
161
- docs: Created
162
- type: root.ReturnCustomVoice
163
- errors:
164
- - root.BadRequestError
165
- examples:
166
- - path-parameters:
167
- id: id
168
- request:
169
- name: name
170
- base_voice: ITO
171
- parameter_model: 20240715-4parameter
172
- response:
173
- body:
174
- id: id
175
- version: 1
176
- name: name
177
- created_on: 1000000
178
- modified_on: 1000000
179
- base_voice: ITO
180
- parameter_model: 20240715-4parameter
181
- parameters:
182
- gender: 1
183
- huskiness: 1
184
- nasality: 1
185
- pitch: 1
186
- delete-custom-voice:
187
- path: /v0/evi/custom_voices/{id}
188
- method: DELETE
189
- auth: true
4
+ auth: false
5
+ base-path: ''
6
+ endpoints:
7
+ list-custom-voices:
8
+ path: /v0/evi/custom_voices
9
+ method: GET
10
+ auth: true
11
+ docs: >-
12
+ Fetches a paginated list of **Custom Voices**.
13
+
14
+
15
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
16
+ for details on creating a custom voice.
17
+ display-name: List custom voices
18
+ request:
19
+ name: CustomVoicesListCustomVoicesRequest
20
+ query-parameters:
21
+ page_number:
22
+ type: optional<integer>
190
23
  docs: >-
191
- Deletes a **Custom Voice** and its versions.
192
-
193
-
194
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
195
- for details on creating a custom voice.
196
- path-parameters:
197
- id:
198
- type: string
199
- docs: Identifier for a Custom Voice. Formatted as a UUID.
200
- display-name: Delete a custom voice
201
- errors:
202
- - root.BadRequestError
203
- examples:
204
- - path-parameters:
205
- id: id
206
- update-custom-voice-name:
207
- path: /v0/evi/custom_voices/{id}
208
- method: PATCH
209
- auth: true
24
+ Specifies the page number to retrieve, enabling pagination.
25
+
26
+
27
+ This parameter uses zero-based indexing. For example, setting
28
+ `page_number` to 0 retrieves the first page of results (items 0-9
29
+ if `page_size` is 10), setting `page_number` to 1 retrieves the
30
+ second page (items 10-19), and so on. Defaults to 0, which
31
+ retrieves the first page.
32
+ page_size:
33
+ type: optional<integer>
210
34
  docs: >-
211
- Updates the name of a **Custom Voice**.
212
-
213
-
214
- Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
215
- for details on creating a custom voice.
216
- path-parameters:
217
- id:
218
- type: string
219
- docs: Identifier for a Custom Voice. Formatted as a UUID.
220
- display-name: Update custom voice name
221
- request:
222
- name: PostedCustomVoiceName
223
- body:
224
- properties:
225
- name:
226
- type: string
227
- docs: >-
228
- The name of the Custom Voice. Maximum length of 75 characters.
229
- Will be converted to all-uppercase. (e.g., "sample voice"
230
- becomes "SAMPLE VOICE")
231
- content-type: application/json
232
- response:
233
- docs: Success
234
- type: text
235
- errors:
236
- - root.BadRequestError
237
- source:
238
- openapi: stenographer-openapi.json
35
+ Specifies the maximum number of results to include per page,
36
+ enabling pagination. The value must be between 1 and 100,
37
+ inclusive.
38
+
39
+
40
+ For example, if `page_size` is set to 10, each page will include
41
+ up to 10 items. Defaults to 10.
42
+ name:
43
+ type: optional<string>
44
+ docs: Filter to only include custom voices with name.
45
+ response:
46
+ docs: Success
47
+ type: root.ReturnPagedCustomVoices
48
+ errors:
49
+ - root.BadRequestError
50
+ examples:
51
+ - response:
52
+ body:
53
+ page_number: 1
54
+ page_size: 1
55
+ total_pages: 1
56
+ custom_voices_page:
57
+ - id: id
58
+ version: 1
59
+ name: name
60
+ created_on: 1000000
61
+ modified_on: 1000000
62
+ base_voice: ITO
63
+ parameter_model: 20241004-11parameter
64
+ parameters: {}
65
+ create-custom-voice:
66
+ path: /v0/evi/custom_voices
67
+ method: POST
68
+ auth: true
69
+ docs: >-
70
+ Creates a **Custom Voice** that can be added to an [EVI
71
+ configuration](/reference/empathic-voice-interface-evi/configs/create-config).
72
+
73
+
74
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
75
+ for details on creating a custom voice.
76
+ display-name: Create custom voice
77
+ request:
78
+ body: root.PostedCustomVoice
79
+ content-type: application/json
80
+ response:
81
+ docs: Created
82
+ type: root.ReturnCustomVoice
83
+ errors:
84
+ - root.BadRequestError
85
+ examples:
86
+ - request:
87
+ name: name
88
+ base_voice: ITO
89
+ parameter_model: 20241004-11parameter
90
+ response:
91
+ body:
92
+ id: id
93
+ version: 1
94
+ name: name
95
+ created_on: 1000000
96
+ modified_on: 1000000
97
+ base_voice: ITO
98
+ parameter_model: 20241004-11parameter
99
+ parameters:
100
+ gender: 1
101
+ articulation: 1
102
+ assertiveness: 1
103
+ buoyancy: 1
104
+ confidence: 1
105
+ enthusiasm: 1
106
+ nasality: 1
107
+ relaxedness: 1
108
+ smoothness: 1
109
+ tepidity: 1
110
+ tightness: 1
111
+ get-custom-voice:
112
+ path: /v0/evi/custom_voices/{id}
113
+ method: GET
114
+ auth: true
115
+ docs: >-
116
+ Fetches a specific **Custom Voice** by ID.
117
+
118
+
119
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
120
+ for details on creating a custom voice.
121
+ path-parameters:
122
+ id:
123
+ type: string
124
+ docs: Identifier for a Custom Voice. Formatted as a UUID.
125
+ display-name: Get specific custom voice by ID
126
+ response:
127
+ docs: Success
128
+ type: root.ReturnCustomVoice
129
+ errors:
130
+ - root.BadRequestError
131
+ examples:
132
+ - path-parameters:
133
+ id: id
134
+ response:
135
+ body:
136
+ id: id
137
+ version: 1
138
+ name: name
139
+ created_on: 1000000
140
+ modified_on: 1000000
141
+ base_voice: ITO
142
+ parameter_model: 20241004-11parameter
143
+ parameters:
144
+ gender: 1
145
+ articulation: 1
146
+ assertiveness: 1
147
+ buoyancy: 1
148
+ confidence: 1
149
+ enthusiasm: 1
150
+ nasality: 1
151
+ relaxedness: 1
152
+ smoothness: 1
153
+ tepidity: 1
154
+ tightness: 1
155
+ create-custom-voice-version:
156
+ path: /v0/evi/custom_voices/{id}
157
+ method: POST
158
+ auth: true
159
+ docs: >-
160
+ Updates a **Custom Voice** by creating a new version of the **Custom
161
+ Voice**.
162
+
163
+
164
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
165
+ for details on creating a custom voice.
166
+ path-parameters:
167
+ id:
168
+ type: string
169
+ docs: Identifier for a Custom Voice. Formatted as a UUID.
170
+ display-name: Create new version of existing custom voice
171
+ request:
172
+ body: root.PostedCustomVoice
173
+ content-type: application/json
174
+ response:
175
+ docs: Created
176
+ type: root.ReturnCustomVoice
177
+ errors:
178
+ - root.BadRequestError
179
+ examples:
180
+ - path-parameters:
181
+ id: id
182
+ request:
183
+ name: name
184
+ base_voice: ITO
185
+ parameter_model: 20241004-11parameter
186
+ response:
187
+ body:
188
+ id: id
189
+ version: 1
190
+ name: name
191
+ created_on: 1000000
192
+ modified_on: 1000000
193
+ base_voice: ITO
194
+ parameter_model: 20241004-11parameter
195
+ parameters:
196
+ gender: 1
197
+ articulation: 1
198
+ assertiveness: 1
199
+ buoyancy: 1
200
+ confidence: 1
201
+ enthusiasm: 1
202
+ nasality: 1
203
+ relaxedness: 1
204
+ smoothness: 1
205
+ tepidity: 1
206
+ tightness: 1
207
+ delete-custom-voice:
208
+ path: /v0/evi/custom_voices/{id}
209
+ method: DELETE
210
+ auth: true
211
+ docs: >-
212
+ Deletes a **Custom Voice** and its versions.
213
+
214
+
215
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
216
+ for details on creating a custom voice.
217
+ path-parameters:
218
+ id:
219
+ type: string
220
+ docs: Identifier for a Custom Voice. Formatted as a UUID.
221
+ display-name: Delete a custom voice
222
+ errors:
223
+ - root.BadRequestError
224
+ examples:
225
+ - path-parameters:
226
+ id: id
227
+ update-custom-voice-name:
228
+ path: /v0/evi/custom_voices/{id}
229
+ method: PATCH
230
+ auth: true
231
+ docs: >-
232
+ Updates the name of a **Custom Voice**.
233
+
234
+
235
+ Refer to our [voices guide](/docs/empathic-voice-interface-evi/voices)
236
+ for details on creating a custom voice.
237
+ path-parameters:
238
+ id:
239
+ type: string
240
+ docs: Identifier for a Custom Voice. Formatted as a UUID.
241
+ display-name: Update custom voice name
242
+ request:
243
+ name: PostedCustomVoiceName
244
+ body:
245
+ properties:
246
+ name:
247
+ type: string
248
+ docs: >-
249
+ The name of the Custom Voice. Maximum length of 75 characters.
250
+ Will be converted to all-uppercase. (e.g., "sample voice"
251
+ becomes "SAMPLE VOICE")
252
+ content-type: application/json
253
+ response:
254
+ docs: Success
255
+ type: text
256
+ errors:
257
+ - root.BadRequestError
258
+ source:
259
+ openapi: stenographer-openapi.json