hume 0.13.5 → 0.13.6
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.
- package/.mock/definition/api.yml +12 -0
- package/.mock/definition/empathic-voice/__package__.yml +2976 -0
- package/.mock/definition/empathic-voice/chat.yml +175 -0
- package/.mock/definition/empathic-voice/chatGroups.yml +627 -0
- package/.mock/definition/empathic-voice/chatWebhooks.yml +30 -0
- package/.mock/definition/empathic-voice/chats.yml +506 -0
- package/.mock/definition/empathic-voice/configs.yml +842 -0
- package/.mock/definition/empathic-voice/prompts.yml +558 -0
- package/.mock/definition/empathic-voice/tools.yml +626 -0
- package/.mock/definition/expression-measurement/__package__.yml +1 -0
- package/.mock/definition/expression-measurement/batch/__package__.yml +1803 -0
- package/.mock/definition/expression-measurement/stream/__package__.yml +113 -0
- package/.mock/definition/expression-measurement/stream/stream.yml +438 -0
- package/.mock/definition/tts/__package__.yml +713 -0
- package/.mock/definition/tts/streamInput.yml +84 -0
- package/.mock/definition/tts/voices.yml +143 -0
- package/.mock/fern.config.json +4 -0
- package/Client.js +10 -3
- package/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
- package/api/resources/index.d.ts +1 -1
- package/api/resources/index.js +2 -2
- package/dist/Client.js +10 -3
- package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +2 -2
- package/dist/api/resources/index.d.ts +1 -1
- package/dist/api/resources/index.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ReturnConfig.js +1 -1
- package/dist/serialization/resources/index.d.ts +1 -1
- package/dist/serialization/resources/index.js +2 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +702 -702
- package/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ReturnConfig.js +1 -1
- package/serialization/resources/index.d.ts +1 -1
- package/serialization/resources/index.js +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -20,8 +20,8 @@ export declare namespace ReturnConfig {
|
|
|
20
20
|
name?: string | null;
|
|
21
21
|
id?: string | null;
|
|
22
22
|
version?: number | null;
|
|
23
|
-
tools?: (ReturnUserDefinedTool.Raw | null | undefined)[] | null;
|
|
24
23
|
version_description?: string | null;
|
|
24
|
+
tools?: (ReturnUserDefinedTool.Raw | null | undefined)[] | null;
|
|
25
25
|
language_model?: ReturnLanguageModel.Raw | null;
|
|
26
26
|
builtin_tools?: (ReturnBuiltinTool.Raw | null | undefined)[] | null;
|
|
27
27
|
evi_version?: string | null;
|
|
@@ -52,8 +52,8 @@ exports.ReturnConfig = core.serialization.object({
|
|
|
52
52
|
name: core.serialization.string().optional(),
|
|
53
53
|
id: core.serialization.string().optional(),
|
|
54
54
|
version: core.serialization.number().optional(),
|
|
55
|
-
tools: core.serialization.list(ReturnUserDefinedTool_1.ReturnUserDefinedTool.optional()).optional(),
|
|
56
55
|
versionDescription: core.serialization.property("version_description", core.serialization.string().optional()),
|
|
56
|
+
tools: core.serialization.list(ReturnUserDefinedTool_1.ReturnUserDefinedTool.optional()).optional(),
|
|
57
57
|
languageModel: core.serialization.property("language_model", ReturnLanguageModel_1.ReturnLanguageModel.optional()),
|
|
58
58
|
builtinTools: core.serialization.property("builtin_tools", core.serialization.list(ReturnBuiltinTool_1.ReturnBuiltinTool.optional()).optional()),
|
|
59
59
|
eviVersion: core.serialization.property("evi_version", core.serialization.string().optional()),
|
|
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
33
33
|
};
|
|
34
34
|
})();
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
exports.expressionMeasurement = exports.
|
|
37
|
-
exports.tts = __importStar(require("./tts"));
|
|
36
|
+
exports.expressionMeasurement = exports.tts = exports.empathicVoice = void 0;
|
|
38
37
|
exports.empathicVoice = __importStar(require("./empathicVoice"));
|
|
38
|
+
exports.tts = __importStar(require("./tts"));
|
|
39
39
|
exports.expressionMeasurement = __importStar(require("./expressionMeasurement"));
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.13.
|
|
1
|
+
export declare const SDK_VERSION = "0.13.6";
|
package/version.js
CHANGED