Skip to content

Commit f7cf0e1

Browse files
(feat): release 0.8.2 (#62)
1 parent f4d2f40 commit f7cf0e1

File tree

24 files changed

+528
-581
lines changed

24 files changed

+528
-581
lines changed

.mock/definition/empathic-voice/__package__.yml

-14
Original file line numberDiff line numberDiff line change
@@ -423,11 +423,6 @@ types:
423423
docs: >-
424424
String with the name of the voice to use. Maximum length of 75
425425
characters. Will be converted to all-uppercase.
426-
ReturnPrivacySettings:
427-
properties:
428-
id: optional<string>
429-
do_not_retain_data: optional<boolean>
430-
do_not_use_for_training: optional<boolean>
431426
PostedCustomVoiceName:
432427
docs: A custom voice name change to be posted to the server
433428
properties:
@@ -794,15 +789,6 @@ types:
794789
List of chat_events returned for the specified page number and page
795790
size.
796791
type: list<ReturnChatEvent>
797-
ReturnPurgeStats:
798-
properties:
799-
id: optional<string>
800-
num_chats: optional<integer>
801-
num_chat_events: optional<integer>
802-
num_configs: optional<integer>
803-
num_prompts: optional<integer>
804-
num_tools: optional<integer>
805-
num_voices: optional<integer>
806792
AssistantInput:
807793
docs: When provided, the input is spoken by EVI.
808794
properties:

.mock/definition/empathic-voice/chatGroups.yml

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ service:
2424
Boolean to indicate if the results should be paginated in
2525
chronological order or reverse-chronological order. Defaults to
2626
true.
27+
config_id:
28+
type: optional<string>
29+
docs: >-
30+
Filter chatgroups to only include chats that used this config in
31+
their most recent chat.
2732
response:
2833
docs: Success
2934
type: root.ReturnPagedChatGroups

.mock/definition/empathic-voice/configs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ service:
2121
restrict_to_most_recent:
2222
type: optional<boolean>
2323
docs: Only include the most recent version of each config in the list.
24+
name:
25+
type: optional<string>
26+
docs: Filter to only include configs with this name.
2427
response:
2528
docs: Success
2629
type: root.ReturnPagedConfigs

.mock/definition/empathic-voice/prompts.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ service:
2121
restrict_to_most_recent:
2222
type: optional<boolean>
2323
docs: Only include the most recent version of each prompt in the list.
24+
name:
25+
type: optional<string>
26+
docs: Filter to only include prompts with this name.
2427
response:
2528
docs: Success
2629
type: root.ReturnPagedPrompts

.mock/definition/empathic-voice/tools.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ service:
2121
restrict_to_most_recent:
2222
type: optional<boolean>
2323
docs: Only include the most recent version of each tool in the list.
24+
name:
25+
type: optional<string>
26+
docs: Filter to only include tools with this name.
2427
response:
2528
docs: Success
2629
type: root.ReturnPagedUserDefinedTools

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hume",
3-
"version": "0.8.1-beta10",
3+
"version": "0.8.1",
44
"private": false,
55
"repository": "https://github.com/HumeAI/hume-typescript-sdk",
66
"main": "./index.js",

0 commit comments

Comments
 (0)