hume 0.7.2 → 0.8.1-beta0
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/empathic-voice/__package__.yml +492 -322
- package/.mock/definition/empathic-voice/chat.yml +8 -8
- package/.mock/definition/empathic-voice/configs.yml +6 -42
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +3 -3
- package/Client.js +4 -9
- package/api/resources/empathicVoice/client/Client.d.ts +6 -0
- package/api/resources/empathicVoice/client/Client.js +5 -0
- package/api/resources/empathicVoice/index.d.ts +0 -1
- package/api/resources/empathicVoice/index.js +0 -1
- package/api/resources/empathicVoice/resources/chat/client/Client.d.ts +21 -0
- package/api/resources/empathicVoice/resources/chat/client/Client.js +60 -0
- package/api/resources/empathicVoice/resources/chat/client/Socket.d.ts +76 -0
- package/api/resources/empathicVoice/resources/chat/client/Socket.js +150 -0
- package/api/resources/empathicVoice/resources/chat/client/index.d.ts +0 -0
- package/api/resources/empathicVoice/resources/chat/client/index.js +1 -0
- package/api/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +1 -1
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +3 -0
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -6
- package/api/resources/empathicVoice/resources/chats/client/Client.d.ts +3 -0
- package/api/resources/empathicVoice/resources/chats/client/Client.js +4 -6
- package/api/resources/empathicVoice/resources/configs/client/Client.d.ts +3 -0
- package/api/resources/empathicVoice/resources/configs/client/Client.js +19 -29
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -4
- package/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +1 -4
- package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +3 -0
- package/api/resources/empathicVoice/resources/prompts/client/Client.js +19 -29
- package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +3 -0
- package/api/resources/empathicVoice/resources/tools/client/Client.js +19 -25
- package/api/resources/empathicVoice/types/AssistantEnd.d.ts +2 -2
- package/api/resources/empathicVoice/types/AssistantInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/AssistantMessage.d.ts +4 -4
- package/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/api/resources/empathicVoice/types/AudioInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
- package/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/ChatMetadata.d.ts +6 -4
- package/api/resources/empathicVoice/types/Context.d.ts +2 -2
- package/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +8 -0
- package/api/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +6 -0
- package/api/resources/empathicVoice/types/HttpValidationError.d.ts +7 -0
- package/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +18 -0
- package/api/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +10 -0
- package/api/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +11 -0
- package/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +2 -1
- package/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +1 -0
- package/api/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +11 -0
- package/api/resources/empathicVoice/types/PostedVoice.d.ts +3 -3
- package/api/resources/empathicVoice/types/PostedVoiceName.d.ts +1 -1
- package/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -4
- package/api/resources/empathicVoice/types/ReturnCustomVoice.d.ts +26 -0
- package/api/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +11 -0
- package/api/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +17 -0
- package/api/resources/empathicVoice/types/ReturnPrivacySettings.d.ts +8 -0
- package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
- package/api/resources/empathicVoice/types/ReturnPurgeStats.d.ts +12 -0
- package/api/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +11 -0
- package/api/resources/empathicVoice/types/ReturnVoice.d.ts +2 -2
- package/api/resources/empathicVoice/types/SessionSettings.d.ts +13 -10
- package/api/resources/empathicVoice/types/TextInput.d.ts +6 -0
- package/api/resources/empathicVoice/types/Tool.d.ts +6 -6
- package/api/resources/empathicVoice/types/ToolCallMessage.d.ts +6 -6
- package/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +10 -10
- package/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +4 -4
- package/api/resources/empathicVoice/types/TtsInput.d.ts +6 -0
- package/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/UserInterruption.d.ts +2 -2
- package/api/resources/empathicVoice/types/UserMessage.d.ts +4 -4
- package/api/resources/empathicVoice/types/ValidationError.d.ts +9 -0
- package/api/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +4 -0
- package/api/resources/empathicVoice/types/VoiceArgs.d.ts +9 -0
- package/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +9 -0
- package/api/resources/empathicVoice/types/VoiceNameEnum.js +11 -0
- package/api/resources/empathicVoice/types/WebSocketError.d.ts +18 -0
- package/api/resources/empathicVoice/types/index.d.ts +32 -13
- package/api/resources/empathicVoice/types/index.js +32 -13
- package/api/resources/expressionMeasurement/client/Client.d.ts +3 -0
- package/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +3 -0
- package/api/resources/expressionMeasurement/resources/batch/client/Client.js +12 -17
- package/api/resources/index.d.ts +0 -1
- package/api/resources/index.js +1 -2
- package/core/form-data-utils/FormDataWrapper.js +1 -3
- package/core/schemas/Schema.d.ts +3 -4
- package/core/schemas/builders/lazy/lazy.d.ts +2 -2
- package/core/schemas/builders/lazy/lazy.js +8 -19
- package/core/schemas/builders/lazy/lazyObject.js +1 -10
- package/core/schemas/builders/list/list.js +31 -44
- package/core/schemas/builders/object/object.js +88 -111
- package/core/schemas/builders/object/types.d.ts +2 -2
- package/core/schemas/builders/object-like/getObjectLikeUtils.js +3 -12
- package/core/schemas/builders/record/record.js +49 -60
- package/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +2 -2
- package/core/schemas/builders/schema-utils/getSchemaUtils.js +12 -21
- package/core/schemas/builders/set/set.js +6 -15
- package/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +21 -32
- package/core/schemas/builders/union/union.js +51 -62
- package/core/schemas/utils/maybeSkipValidation.js +3 -12
- package/core/websocket/events.d.ts +36 -0
- package/core/websocket/events.js +27 -0
- package/core/websocket/index.d.ts +1 -1
- package/core/websocket/index.js +15 -3
- package/core/websocket/ws.d.ts +136 -0
- package/core/websocket/ws.js +432 -0
- package/dist/Client.d.ts +3 -3
- package/dist/Client.js +4 -9
- package/dist/api/resources/empathicVoice/client/Client.d.ts +6 -0
- package/dist/api/resources/empathicVoice/client/Client.js +5 -0
- package/dist/api/resources/empathicVoice/index.d.ts +0 -1
- package/dist/api/resources/empathicVoice/index.js +0 -1
- package/dist/api/resources/empathicVoice/resources/chat/client/Client.d.ts +21 -0
- package/dist/api/resources/empathicVoice/resources/chat/client/Client.js +60 -0
- package/dist/api/resources/empathicVoice/resources/chat/client/Socket.d.ts +76 -0
- package/dist/api/resources/empathicVoice/resources/chat/client/Socket.js +150 -0
- package/dist/api/resources/empathicVoice/resources/chat/client/index.d.ts +0 -0
- package/dist/api/resources/empathicVoice/resources/chat/client/index.js +1 -0
- package/dist/api/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.d.ts +3 -0
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -6
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.d.ts +3 -0
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +4 -6
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.d.ts +3 -0
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +19 -29
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +1 -4
- package/dist/api/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +1 -4
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +3 -0
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +19 -29
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +3 -0
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +19 -25
- package/dist/api/resources/empathicVoice/types/AssistantEnd.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AssistantInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AssistantMessage.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AudioOutput.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ChatMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ChatMetadata.d.ts +6 -4
- package/dist/api/resources/empathicVoice/types/Context.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +8 -0
- package/dist/api/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +6 -0
- package/dist/api/resources/empathicVoice/types/HttpValidationError.d.ts +7 -0
- package/dist/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +18 -0
- package/dist/api/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +10 -0
- package/dist/api/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +11 -0
- package/dist/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +2 -1
- package/dist/api/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +1 -0
- package/dist/api/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +11 -0
- package/dist/api/resources/empathicVoice/types/PostedVoice.d.ts +3 -3
- package/dist/api/resources/empathicVoice/types/PostedVoiceName.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -4
- package/dist/api/resources/empathicVoice/types/ReturnCustomVoice.d.ts +26 -0
- package/dist/api/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +11 -0
- package/dist/api/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +17 -0
- package/dist/api/resources/empathicVoice/types/ReturnPrivacySettings.d.ts +8 -0
- package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ReturnPurgeStats.d.ts +12 -0
- package/dist/api/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +11 -0
- package/dist/api/resources/empathicVoice/types/ReturnVoice.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +13 -10
- package/dist/api/resources/empathicVoice/types/TextInput.d.ts +6 -0
- package/dist/api/resources/empathicVoice/types/Tool.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ToolCallMessage.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ToolErrorMessage.d.ts +10 -10
- package/dist/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/TtsInput.d.ts +6 -0
- package/dist/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/UserInterruption.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/UserMessage.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/ValidationError.d.ts +9 -0
- package/dist/api/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +4 -0
- package/dist/api/resources/empathicVoice/types/VoiceArgs.d.ts +9 -0
- package/dist/api/resources/empathicVoice/types/VoiceNameEnum.d.ts +9 -0
- package/dist/api/resources/empathicVoice/types/VoiceNameEnum.js +11 -0
- package/dist/api/resources/empathicVoice/types/WebSocketError.d.ts +18 -0
- package/dist/api/resources/empathicVoice/types/index.d.ts +32 -13
- package/dist/api/resources/empathicVoice/types/index.js +32 -13
- package/dist/api/resources/expressionMeasurement/client/Client.d.ts +3 -0
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.d.ts +3 -0
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +12 -17
- package/dist/api/resources/index.d.ts +0 -1
- package/dist/api/resources/index.js +1 -2
- package/dist/core/form-data-utils/FormDataWrapper.js +1 -3
- package/dist/core/schemas/Schema.d.ts +3 -4
- package/dist/core/schemas/builders/lazy/lazy.d.ts +2 -2
- package/dist/core/schemas/builders/lazy/lazy.js +8 -19
- package/dist/core/schemas/builders/lazy/lazyObject.js +1 -10
- package/dist/core/schemas/builders/list/list.js +31 -44
- package/dist/core/schemas/builders/object/object.js +88 -111
- package/dist/core/schemas/builders/object/types.d.ts +2 -2
- package/dist/core/schemas/builders/object-like/getObjectLikeUtils.js +3 -12
- package/dist/core/schemas/builders/record/record.js +49 -60
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.d.ts +2 -2
- package/dist/core/schemas/builders/schema-utils/getSchemaUtils.js +12 -21
- package/dist/core/schemas/builders/set/set.js +6 -15
- package/dist/core/schemas/builders/undiscriminated-union/undiscriminatedUnion.js +21 -32
- package/dist/core/schemas/builders/union/union.js +51 -62
- package/dist/core/schemas/utils/maybeSkipValidation.js +3 -12
- package/dist/core/websocket/events.d.ts +36 -0
- package/dist/core/websocket/events.js +27 -0
- package/dist/core/websocket/index.d.ts +1 -1
- package/dist/core/websocket/index.js +15 -3
- package/dist/core/websocket/ws.d.ts +136 -0
- package/dist/core/websocket/ws.js +432 -0
- package/dist/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.js +2 -2
- package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -4
- package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +2 -4
- package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -4
- package/dist/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +2 -4
- package/dist/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantEnd.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/AssistantMessage.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/AudioOutput.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +3 -2
- package/dist/serialization/resources/empathicVoice/types/ChatMetadata.js +3 -2
- package/dist/serialization/resources/empathicVoice/types/Context.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/Context.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +14 -0
- package/dist/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +35 -0
- package/dist/serialization/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +12 -0
- package/dist/serialization/resources/empathicVoice/types/FunctionCallResponseInput.js +33 -0
- package/dist/serialization/resources/empathicVoice/types/HttpValidationError.d.ts +13 -0
- package/dist/serialization/resources/empathicVoice/types/HttpValidationError.js +34 -0
- package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +16 -0
- package/dist/serialization/resources/empathicVoice/types/PostedCustomVoice.js +39 -0
- package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +12 -0
- package/dist/serialization/resources/empathicVoice/types/PostedCustomVoiceName.js +33 -0
- package/dist/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +13 -0
- package/dist/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.js +34 -0
- package/dist/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +14 -0
- package/dist/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.js +35 -0
- package/dist/serialization/resources/empathicVoice/types/PostedVoice.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/PostedVoice.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +2 -4
- package/dist/serialization/resources/empathicVoice/types/ReturnConfig.js +2 -4
- package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +20 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +41 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +13 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.js +34 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +16 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.js +37 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPrivacySettings.d.ts +14 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPrivacySettings.js +35 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPurgeStats.d.ts +18 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnPurgeStats.js +39 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +14 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.js +35 -0
- package/dist/serialization/resources/empathicVoice/types/ReturnVoice.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ReturnVoice.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.d.ts +9 -7
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.js +9 -7
- package/dist/serialization/resources/empathicVoice/types/TextInput.d.ts +12 -0
- package/dist/serialization/resources/empathicVoice/types/TextInput.js +33 -0
- package/dist/serialization/resources/empathicVoice/types/Tool.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/Tool.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolCallMessage.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
- package/dist/serialization/resources/empathicVoice/types/ToolErrorMessage.js +6 -6
- package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/ToolResponseMessage.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/TtsInput.d.ts +12 -0
- package/dist/serialization/resources/empathicVoice/types/TtsInput.js +33 -0
- package/dist/serialization/resources/empathicVoice/types/UserInput.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInput.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserInterruption.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/UserMessage.d.ts +2 -2
- package/dist/serialization/resources/empathicVoice/types/UserMessage.js +2 -2
- package/dist/serialization/resources/empathicVoice/types/ValidationError.d.ts +15 -0
- package/dist/serialization/resources/empathicVoice/types/ValidationError.js +36 -0
- package/dist/serialization/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +10 -0
- package/dist/serialization/resources/empathicVoice/types/ValidationErrorLocItem.js +31 -0
- package/dist/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +15 -0
- package/dist/serialization/resources/empathicVoice/types/VoiceArgs.js +36 -0
- package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +10 -0
- package/dist/serialization/resources/empathicVoice/types/VoiceNameEnum.js +31 -0
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.d.ts +16 -0
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.js +37 -0
- package/dist/serialization/resources/empathicVoice/types/index.d.ts +32 -13
- package/dist/serialization/resources/empathicVoice/types/index.js +32 -13
- package/dist/serialization/resources/index.d.ts +0 -1
- package/dist/serialization/resources/index.js +1 -2
- package/dist/wrapper/HumeClient.d.ts +0 -3
- package/dist/wrapper/HumeClient.js +0 -5
- package/package.json +1 -1
- package/reference.md +0 -2156
- package/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.d.ts +2 -2
- package/serialization/resources/empathicVoice/resources/chat/types/SubscribeEvent.js +2 -2
- package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.d.ts +2 -4
- package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfig.js +2 -4
- package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.d.ts +2 -4
- package/serialization/resources/empathicVoice/resources/configs/client/requests/PostedConfigVersion.js +2 -4
- package/serialization/resources/empathicVoice/types/AssistantEnd.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AssistantEnd.js +1 -1
- package/serialization/resources/empathicVoice/types/AssistantInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AssistantInput.js +1 -1
- package/serialization/resources/empathicVoice/types/AssistantMessage.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/AssistantMessage.js +2 -2
- package/serialization/resources/empathicVoice/types/AudioConfiguration.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AudioConfiguration.js +1 -1
- package/serialization/resources/empathicVoice/types/AudioInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/AudioInput.js +1 -1
- package/serialization/resources/empathicVoice/types/AudioOutput.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/AudioOutput.js +2 -2
- package/serialization/resources/empathicVoice/types/BuiltinToolConfig.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/BuiltinToolConfig.js +1 -1
- package/serialization/resources/empathicVoice/types/ChatMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ChatMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/ChatMetadata.d.ts +3 -2
- package/serialization/resources/empathicVoice/types/ChatMetadata.js +3 -2
- package/serialization/resources/empathicVoice/types/Context.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/Context.js +1 -1
- package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.d.ts +14 -0
- package/serialization/resources/empathicVoice/types/ExtendedVoiceArgs.js +35 -0
- package/serialization/resources/empathicVoice/types/FunctionCallResponseInput.d.ts +12 -0
- package/serialization/resources/empathicVoice/types/FunctionCallResponseInput.js +33 -0
- package/serialization/resources/empathicVoice/types/HttpValidationError.d.ts +13 -0
- package/serialization/resources/empathicVoice/types/HttpValidationError.js +34 -0
- package/serialization/resources/empathicVoice/types/PauseAssistantMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/PauseAssistantMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/PostedCustomVoice.d.ts +16 -0
- package/serialization/resources/empathicVoice/types/PostedCustomVoice.js +39 -0
- package/serialization/resources/empathicVoice/types/PostedCustomVoiceName.d.ts +12 -0
- package/serialization/resources/empathicVoice/types/PostedCustomVoiceName.js +33 -0
- package/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.d.ts +13 -0
- package/serialization/resources/empathicVoice/types/PostedEventMessageSpecs.js +34 -0
- package/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/PostedLanguageModelModelProvider.js +1 -1
- package/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.d.ts +14 -0
- package/serialization/resources/empathicVoice/types/PostedTimeoutSpecs.js +35 -0
- package/serialization/resources/empathicVoice/types/PostedVoice.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/PostedVoice.js +2 -2
- package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/ReturnConfig.d.ts +2 -4
- package/serialization/resources/empathicVoice/types/ReturnConfig.js +2 -4
- package/serialization/resources/empathicVoice/types/ReturnCustomVoice.d.ts +20 -0
- package/serialization/resources/empathicVoice/types/ReturnCustomVoice.js +41 -0
- package/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.d.ts +13 -0
- package/serialization/resources/empathicVoice/types/ReturnEventMessageSpecs.js +34 -0
- package/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.d.ts +16 -0
- package/serialization/resources/empathicVoice/types/ReturnPagedCustomVoices.js +37 -0
- package/serialization/resources/empathicVoice/types/ReturnPrivacySettings.d.ts +14 -0
- package/serialization/resources/empathicVoice/types/ReturnPrivacySettings.js +35 -0
- package/serialization/resources/empathicVoice/types/ReturnPurgeStats.d.ts +18 -0
- package/serialization/resources/empathicVoice/types/ReturnPurgeStats.js +39 -0
- package/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.d.ts +14 -0
- package/serialization/resources/empathicVoice/types/ReturnTimeoutSpecs.js +35 -0
- package/serialization/resources/empathicVoice/types/ReturnVoice.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ReturnVoice.js +1 -1
- package/serialization/resources/empathicVoice/types/SessionSettings.d.ts +9 -7
- package/serialization/resources/empathicVoice/types/SessionSettings.js +9 -7
- package/serialization/resources/empathicVoice/types/TextInput.d.ts +12 -0
- package/serialization/resources/empathicVoice/types/TextInput.js +33 -0
- package/serialization/resources/empathicVoice/types/Tool.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/Tool.js +3 -3
- package/serialization/resources/empathicVoice/types/ToolCallMessage.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/ToolCallMessage.js +3 -3
- package/serialization/resources/empathicVoice/types/ToolErrorMessage.d.ts +6 -6
- package/serialization/resources/empathicVoice/types/ToolErrorMessage.js +6 -6
- package/serialization/resources/empathicVoice/types/ToolResponseMessage.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/ToolResponseMessage.js +2 -2
- package/serialization/resources/empathicVoice/types/TtsInput.d.ts +12 -0
- package/serialization/resources/empathicVoice/types/TtsInput.js +33 -0
- package/serialization/resources/empathicVoice/types/UserInput.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/UserInput.js +1 -1
- package/serialization/resources/empathicVoice/types/UserInterruption.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/UserInterruption.js +1 -1
- package/serialization/resources/empathicVoice/types/UserMessage.d.ts +2 -2
- package/serialization/resources/empathicVoice/types/UserMessage.js +2 -2
- package/serialization/resources/empathicVoice/types/ValidationError.d.ts +15 -0
- package/serialization/resources/empathicVoice/types/ValidationError.js +36 -0
- package/serialization/resources/empathicVoice/types/ValidationErrorLocItem.d.ts +10 -0
- package/serialization/resources/empathicVoice/types/ValidationErrorLocItem.js +31 -0
- package/serialization/resources/empathicVoice/types/VoiceArgs.d.ts +15 -0
- package/serialization/resources/empathicVoice/types/VoiceArgs.js +36 -0
- package/serialization/resources/empathicVoice/types/VoiceNameEnum.d.ts +10 -0
- package/serialization/resources/empathicVoice/types/VoiceNameEnum.js +31 -0
- package/serialization/resources/empathicVoice/types/WebSocketError.d.ts +16 -0
- package/serialization/resources/empathicVoice/types/WebSocketError.js +37 -0
- package/serialization/resources/empathicVoice/types/index.d.ts +32 -13
- package/serialization/resources/empathicVoice/types/index.js +32 -13
- package/serialization/resources/index.d.ts +0 -1
- package/serialization/resources/index.js +1 -2
- package/wrapper/HumeClient.d.ts +0 -3
- package/wrapper/HumeClient.js +0 -5
- package/.mock/definition/custom-models/__package__.yml +0 -1392
- package/.mock/definition/custom-models/datasets.yml +0 -406
- package/.mock/definition/custom-models/files.yml +0 -263
- package/.mock/definition/custom-models/jobs.yml +0 -44
- package/.mock/definition/custom-models/models.yml +0 -303
- package/api/resources/customModels/client/Client.d.ts +0 -33
- package/api/resources/customModels/client/Client.js +0 -32
- package/api/resources/customModels/client/index.d.ts +0 -1
- package/api/resources/customModels/client/index.js +0 -2
- package/api/resources/customModels/index.d.ts +0 -3
- package/api/resources/customModels/index.js +0 -19
- package/api/resources/customModels/resources/datasets/client/Client.d.ts +0 -126
- package/api/resources/customModels/resources/datasets/client/Client.js +0 -584
- package/api/resources/customModels/resources/datasets/client/index.d.ts +0 -1
- package/api/resources/customModels/resources/datasets/client/index.js +0 -17
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetRequest.d.ts +0 -13
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetVersionRequest.d.ts +0 -9
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetFilesRequest.d.ts +0 -21
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionFilesRequest.d.ts +0 -21
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionsRequest.d.ts +0 -21
- package/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetsRequest.d.ts +0 -25
- package/api/resources/customModels/resources/datasets/client/requests/index.d.ts +0 -6
- package/api/resources/customModels/resources/datasets/client/requests/index.js +0 -2
- package/api/resources/customModels/resources/datasets/index.d.ts +0 -1
- package/api/resources/customModels/resources/datasets/index.js +0 -17
- package/api/resources/customModels/resources/files/client/Client.d.ts +0 -107
- package/api/resources/customModels/resources/files/client/Client.js +0 -438
- package/api/resources/customModels/resources/files/client/index.d.ts +0 -1
- package/api/resources/customModels/resources/files/client/index.js +0 -17
- package/api/resources/customModels/resources/files/client/requests/FilesListFilesRequest.d.ts +0 -21
- package/api/resources/customModels/resources/files/client/requests/FilesUpdateFileNameRequest.d.ts +0 -15
- package/api/resources/customModels/resources/files/client/requests/FilesUploadFileRequest.d.ts +0 -9
- package/api/resources/customModels/resources/files/client/requests/index.d.ts +0 -3
- package/api/resources/customModels/resources/files/client/requests/index.js +0 -2
- package/api/resources/customModels/resources/files/index.d.ts +0 -1
- package/api/resources/customModels/resources/files/index.js +0 -17
- package/api/resources/customModels/resources/index.d.ts +0 -7
- package/api/resources/customModels/resources/index.js +0 -36
- package/api/resources/customModels/resources/jobs/client/Client.d.ts +0 -56
- package/api/resources/customModels/resources/jobs/client/Client.js +0 -177
- package/api/resources/customModels/resources/jobs/client/index.d.ts +0 -1
- package/api/resources/customModels/resources/jobs/client/index.js +0 -2
- package/api/resources/customModels/resources/jobs/index.d.ts +0 -1
- package/api/resources/customModels/resources/jobs/index.js +0 -17
- package/api/resources/customModels/resources/models/client/Client.d.ts +0 -90
- package/api/resources/customModels/resources/models/client/Client.js +0 -417
- package/api/resources/customModels/resources/models/client/index.d.ts +0 -1
- package/api/resources/customModels/resources/models/client/index.js +0 -17
- package/api/resources/customModels/resources/models/client/requests/ModelsGetModelVersionRequest.d.ts +0 -13
- package/api/resources/customModels/resources/models/client/requests/ModelsListModelVersionsRequest.d.ts +0 -25
- package/api/resources/customModels/resources/models/client/requests/ModelsListModelsRequest.d.ts +0 -25
- package/api/resources/customModels/resources/models/client/requests/ModelsUpdateModelNameRequest.d.ts +0 -15
- package/api/resources/customModels/resources/models/client/requests/index.d.ts +0 -4
- package/api/resources/customModels/resources/models/client/requests/index.js +0 -2
- package/api/resources/customModels/resources/models/index.d.ts +0 -1
- package/api/resources/customModels/resources/models/index.js +0 -17
- package/api/resources/customModels/types/Alternative.d.ts +0 -4
- package/api/resources/customModels/types/AttributeFilter.d.ts +0 -12
- package/api/resources/customModels/types/AuthorizedFile.d.ts +0 -40
- package/api/resources/customModels/types/Bcp47Tag.d.ts +0 -35
- package/api/resources/customModels/types/Bcp47Tag.js +0 -37
- package/api/resources/customModels/types/BoundingBox.d.ts +0 -16
- package/api/resources/customModels/types/BurstPrediction.d.ts +0 -11
- package/api/resources/customModels/types/Classification.d.ts +0 -4
- package/api/resources/customModels/types/CompletedEmbeddingGeneration.d.ts +0 -11
- package/api/resources/customModels/types/CompletedInference.d.ts +0 -15
- package/api/resources/customModels/types/CompletedTlInference.d.ts +0 -15
- package/api/resources/customModels/types/CompletedTraining.d.ts +0 -14
- package/api/resources/customModels/types/CustomModel.d.ts +0 -5
- package/api/resources/customModels/types/CustomModelId.d.ts +0 -6
- package/api/resources/customModels/types/CustomModelPrediction.d.ts +0 -8
- package/api/resources/customModels/types/CustomModelRequest.d.ts +0 -9
- package/api/resources/customModels/types/CustomModelVersionId.d.ts +0 -6
- package/api/resources/customModels/types/Dataset.d.ts +0 -5
- package/api/resources/customModels/types/DatasetId.d.ts +0 -6
- package/api/resources/customModels/types/DatasetLabels.d.ts +0 -21
- package/api/resources/customModels/types/DatasetLabelsFileUriInput.d.ts +0 -12
- package/api/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.d.ts +0 -14
- package/api/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.js +0 -13
- package/api/resources/customModels/types/DatasetPage.d.ts +0 -18
- package/api/resources/customModels/types/DatasetVersion.d.ts +0 -20
- package/api/resources/customModels/types/DatasetVersionFeatureTypesValue.d.ts +0 -14
- package/api/resources/customModels/types/DatasetVersionFeatureTypesValue.js +0 -13
- package/api/resources/customModels/types/DatasetVersionId.d.ts +0 -6
- package/api/resources/customModels/types/DatasetVersionPage.d.ts +0 -18
- package/api/resources/customModels/types/DescriptionsScore.d.ts +0 -9
- package/api/resources/customModels/types/Direction.d.ts +0 -8
- package/api/resources/customModels/types/Direction.js +0 -10
- package/api/resources/customModels/types/EmbeddingGenerationBaseRequest.d.ts +0 -8
- package/api/resources/customModels/types/EmotionScore.d.ts +0 -9
- package/api/resources/customModels/types/EmotionScore.js +0 -5
- package/api/resources/customModels/types/Error_.d.ts +0 -9
- package/api/resources/customModels/types/Error_.js +0 -5
- package/api/resources/customModels/types/EvaluationArgs.d.ts +0 -7
- package/api/resources/customModels/types/EvaluationArgs.js +0 -5
- package/api/resources/customModels/types/ExternalModel.d.ts +0 -23
- package/api/resources/customModels/types/ExternalModel.js +0 -5
- package/api/resources/customModels/types/ExternalModelVersion.d.ts +0 -37
- package/api/resources/customModels/types/ExternalModelVersion.js +0 -5
- package/api/resources/customModels/types/ExternalModelVersionFileType.d.ts +0 -15
- package/api/resources/customModels/types/ExternalModelVersionFileType.js +0 -14
- package/api/resources/customModels/types/ExternalModelVersionTag.d.ts +0 -12
- package/api/resources/customModels/types/ExternalModelVersionTag.js +0 -5
- package/api/resources/customModels/types/Face.d.ts +0 -18
- package/api/resources/customModels/types/Face.js +0 -5
- package/api/resources/customModels/types/FacePrediction.d.ts +0 -19
- package/api/resources/customModels/types/FacePrediction.js +0 -5
- package/api/resources/customModels/types/FacemeshPrediction.d.ts +0 -8
- package/api/resources/customModels/types/FacemeshPrediction.js +0 -5
- package/api/resources/customModels/types/FacsScore.d.ts +0 -9
- package/api/resources/customModels/types/FacsScore.js +0 -5
- package/api/resources/customModels/types/Failed.d.ts +0 -13
- package/api/resources/customModels/types/Failed.js +0 -5
- package/api/resources/customModels/types/FileInput.d.ts +0 -16
- package/api/resources/customModels/types/FileInput.js +0 -5
- package/api/resources/customModels/types/FilePage.d.ts +0 -18
- package/api/resources/customModels/types/FilePage.js +0 -5
- package/api/resources/customModels/types/FileWithAttributes.d.ts +0 -9
- package/api/resources/customModels/types/FileWithAttributes.js +0 -5
- package/api/resources/customModels/types/FileWithAttributesInput.d.ts +0 -9
- package/api/resources/customModels/types/FileWithAttributesInput.js +0 -5
- package/api/resources/customModels/types/File_.d.ts +0 -11
- package/api/resources/customModels/types/File_.js +0 -5
- package/api/resources/customModels/types/Granularity.d.ts +0 -13
- package/api/resources/customModels/types/Granularity.js +0 -12
- package/api/resources/customModels/types/GroupedPredictionsBurstPrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsBurstPrediction.js +0 -5
- package/api/resources/customModels/types/GroupedPredictionsFacePrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsFacePrediction.js +0 -5
- package/api/resources/customModels/types/GroupedPredictionsFacemeshPrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsFacemeshPrediction.js +0 -5
- package/api/resources/customModels/types/GroupedPredictionsLanguagePrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsLanguagePrediction.js +0 -5
- package/api/resources/customModels/types/GroupedPredictionsNerPrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsNerPrediction.js +0 -5
- package/api/resources/customModels/types/GroupedPredictionsProsodyPrediction.d.ts +0 -9
- package/api/resources/customModels/types/GroupedPredictionsProsodyPrediction.js +0 -5
- package/api/resources/customModels/types/InProgress.d.ts +0 -9
- package/api/resources/customModels/types/InProgress.js +0 -5
- package/api/resources/customModels/types/InferenceBaseRequest.d.ts +0 -22
- package/api/resources/customModels/types/InferenceBaseRequest.js +0 -5
- package/api/resources/customModels/types/InferencePrediction.d.ts +0 -9
- package/api/resources/customModels/types/InferencePrediction.js +0 -5
- package/api/resources/customModels/types/InferenceRequest.d.ts +0 -23
- package/api/resources/customModels/types/InferenceRequest.js +0 -5
- package/api/resources/customModels/types/InferenceResults.d.ts +0 -8
- package/api/resources/customModels/types/InferenceResults.js +0 -5
- package/api/resources/customModels/types/InferenceSourcePredictResult.d.ts +0 -10
- package/api/resources/customModels/types/InferenceSourcePredictResult.js +0 -5
- package/api/resources/customModels/types/JobEmbeddingGeneration.d.ts +0 -11
- package/api/resources/customModels/types/JobEmbeddingGeneration.js +0 -5
- package/api/resources/customModels/types/JobId.d.ts +0 -7
- package/api/resources/customModels/types/JobId.js +0 -5
- package/api/resources/customModels/types/JobInference.d.ts +0 -11
- package/api/resources/customModels/types/JobInference.js +0 -5
- package/api/resources/customModels/types/JobTlInference.d.ts +0 -11
- package/api/resources/customModels/types/JobTlInference.js +0 -5
- package/api/resources/customModels/types/JobTraining.d.ts +0 -11
- package/api/resources/customModels/types/JobTraining.js +0 -5
- package/api/resources/customModels/types/JsonObject.d.ts +0 -6
- package/api/resources/customModels/types/JsonObject.js +0 -5
- package/api/resources/customModels/types/Language.d.ts +0 -11
- package/api/resources/customModels/types/Language.js +0 -5
- package/api/resources/customModels/types/LanguagePrediction.d.ts +0 -24
- package/api/resources/customModels/types/LanguagePrediction.js +0 -5
- package/api/resources/customModels/types/ModelPage.d.ts +0 -18
- package/api/resources/customModels/types/ModelPage.js +0 -5
- package/api/resources/customModels/types/Models.d.ts +0 -12
- package/api/resources/customModels/types/Models.js +0 -5
- package/api/resources/customModels/types/ModelsPredictions.d.ts +0 -12
- package/api/resources/customModels/types/ModelsPredictions.js +0 -5
- package/api/resources/customModels/types/Ner.d.ts +0 -7
- package/api/resources/customModels/types/Ner.js +0 -5
- package/api/resources/customModels/types/NerPrediction.d.ts +0 -24
- package/api/resources/customModels/types/NerPrediction.js +0 -5
- package/api/resources/customModels/types/Null.d.ts +0 -7
- package/api/resources/customModels/types/Null.js +0 -5
- package/api/resources/customModels/types/PageableObject.d.ts +0 -12
- package/api/resources/customModels/types/PageableObject.js +0 -5
- package/api/resources/customModels/types/PositionInterval.d.ts +0 -12
- package/api/resources/customModels/types/PositionInterval.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalNullBurstPrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalNullBurstPrediction.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalNullFacePrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalNullFacePrediction.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +0 -5
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +0 -8
- package/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +0 -5
- package/api/resources/customModels/types/Prosody.d.ts +0 -10
- package/api/resources/customModels/types/Prosody.js +0 -5
- package/api/resources/customModels/types/ProsodyPrediction.d.ts +0 -15
- package/api/resources/customModels/types/ProsodyPrediction.js +0 -5
- package/api/resources/customModels/types/Queued.d.ts +0 -7
- package/api/resources/customModels/types/Queued.js +0 -5
- package/api/resources/customModels/types/RegistryFileDetail.d.ts +0 -9
- package/api/resources/customModels/types/RegistryFileDetail.js +0 -5
- package/api/resources/customModels/types/Regression.d.ts +0 -4
- package/api/resources/customModels/types/Regression.js +0 -5
- package/api/resources/customModels/types/ReturnDataset.d.ts +0 -15
- package/api/resources/customModels/types/ReturnDataset.js +0 -5
- package/api/resources/customModels/types/SentimentScore.d.ts +0 -9
- package/api/resources/customModels/types/SentimentScore.js +0 -5
- package/api/resources/customModels/types/SortBy.d.ts +0 -9
- package/api/resources/customModels/types/SortBy.js +0 -11
- package/api/resources/customModels/types/SortObject.d.ts +0 -8
- package/api/resources/customModels/types/SortObject.js +0 -5
- package/api/resources/customModels/types/Source.d.ts +0 -16
- package/api/resources/customModels/types/Source.js +0 -5
- package/api/resources/customModels/types/SourceFile.d.ts +0 -6
- package/api/resources/customModels/types/SourceFile.js +0 -5
- package/api/resources/customModels/types/SourceTextSource.d.ts +0 -5
- package/api/resources/customModels/types/SourceTextSource.js +0 -5
- package/api/resources/customModels/types/SourceUrl.d.ts +0 -6
- package/api/resources/customModels/types/SourceUrl.js +0 -5
- package/api/resources/customModels/types/StateEmbeddingGeneration.d.ts +0 -19
- package/api/resources/customModels/types/StateEmbeddingGeneration.js +0 -5
- package/api/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +0 -6
- package/api/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.js +0 -5
- package/api/resources/customModels/types/StateEmbeddingGenerationFailed.d.ts +0 -6
- package/api/resources/customModels/types/StateEmbeddingGenerationFailed.js +0 -5
- package/api/resources/customModels/types/StateEmbeddingGenerationInProgress.d.ts +0 -6
- package/api/resources/customModels/types/StateEmbeddingGenerationInProgress.js +0 -5
- package/api/resources/customModels/types/StateEmbeddingGenerationQueued.d.ts +0 -6
- package/api/resources/customModels/types/StateEmbeddingGenerationQueued.js +0 -5
- package/api/resources/customModels/types/StateInference.d.ts +0 -19
- package/api/resources/customModels/types/StateInference.js +0 -5
- package/api/resources/customModels/types/StateInferenceCompletedInference.d.ts +0 -6
- package/api/resources/customModels/types/StateInferenceCompletedInference.js +0 -5
- package/api/resources/customModels/types/StateInferenceFailed.d.ts +0 -6
- package/api/resources/customModels/types/StateInferenceFailed.js +0 -5
- package/api/resources/customModels/types/StateInferenceInProgress.d.ts +0 -6
- package/api/resources/customModels/types/StateInferenceInProgress.js +0 -5
- package/api/resources/customModels/types/StateInferenceQueued.d.ts +0 -6
- package/api/resources/customModels/types/StateInferenceQueued.js +0 -5
- package/api/resources/customModels/types/StateTlInference.d.ts +0 -19
- package/api/resources/customModels/types/StateTlInference.js +0 -5
- package/api/resources/customModels/types/StateTlInferenceCompletedTlInference.d.ts +0 -6
- package/api/resources/customModels/types/StateTlInferenceCompletedTlInference.js +0 -5
- package/api/resources/customModels/types/StateTlInferenceFailed.d.ts +0 -6
- package/api/resources/customModels/types/StateTlInferenceFailed.js +0 -5
- package/api/resources/customModels/types/StateTlInferenceInProgress.d.ts +0 -6
- package/api/resources/customModels/types/StateTlInferenceInProgress.js +0 -5
- package/api/resources/customModels/types/StateTlInferenceQueued.d.ts +0 -6
- package/api/resources/customModels/types/StateTlInferenceQueued.js +0 -5
- package/api/resources/customModels/types/StateTraining.d.ts +0 -19
- package/api/resources/customModels/types/StateTraining.js +0 -5
- package/api/resources/customModels/types/StateTrainingCompletedTraining.d.ts +0 -6
- package/api/resources/customModels/types/StateTrainingCompletedTraining.js +0 -5
- package/api/resources/customModels/types/StateTrainingFailed.d.ts +0 -6
- package/api/resources/customModels/types/StateTrainingFailed.js +0 -5
- package/api/resources/customModels/types/StateTrainingInProgress.d.ts +0 -6
- package/api/resources/customModels/types/StateTrainingInProgress.js +0 -5
- package/api/resources/customModels/types/StateTrainingQueued.d.ts +0 -6
- package/api/resources/customModels/types/StateTrainingQueued.js +0 -5
- package/api/resources/customModels/types/Status.d.ts +0 -10
- package/api/resources/customModels/types/Status.js +0 -12
- package/api/resources/customModels/types/Tag.d.ts +0 -7
- package/api/resources/customModels/types/Tag.js +0 -5
- package/api/resources/customModels/types/Target.d.ts +0 -4
- package/api/resources/customModels/types/Target.js +0 -5
- package/api/resources/customModels/types/Task.d.ts +0 -13
- package/api/resources/customModels/types/Task.js +0 -5
- package/api/resources/customModels/types/TaskClassification.d.ts +0 -5
- package/api/resources/customModels/types/TaskClassification.js +0 -5
- package/api/resources/customModels/types/TaskRegression.d.ts +0 -5
- package/api/resources/customModels/types/TaskRegression.js +0 -5
- package/api/resources/customModels/types/TextSource.d.ts +0 -4
- package/api/resources/customModels/types/TextSource.js +0 -5
- package/api/resources/customModels/types/TimeInterval.d.ts +0 -12
- package/api/resources/customModels/types/TimeInterval.js +0 -5
- package/api/resources/customModels/types/TlInferenceBaseRequest.d.ts +0 -19
- package/api/resources/customModels/types/TlInferenceBaseRequest.js +0 -5
- package/api/resources/customModels/types/TlInferencePrediction.d.ts +0 -10
- package/api/resources/customModels/types/TlInferencePrediction.js +0 -5
- package/api/resources/customModels/types/TlInferenceResults.d.ts +0 -8
- package/api/resources/customModels/types/TlInferenceResults.js +0 -5
- package/api/resources/customModels/types/TlInferenceSourcePredictResult.d.ts +0 -10
- package/api/resources/customModels/types/TlInferenceSourcePredictResult.js +0 -5
- package/api/resources/customModels/types/ToxicityScore.d.ts +0 -9
- package/api/resources/customModels/types/ToxicityScore.js +0 -5
- package/api/resources/customModels/types/TrainingBaseRequest.d.ts +0 -14
- package/api/resources/customModels/types/TrainingBaseRequest.js +0 -5
- package/api/resources/customModels/types/TrainingCustomModel.d.ts +0 -7
- package/api/resources/customModels/types/TrainingCustomModel.js +0 -5
- package/api/resources/customModels/types/Transcription.d.ts +0 -11
- package/api/resources/customModels/types/Transcription.js +0 -5
- package/api/resources/customModels/types/TranscriptionMetadata.d.ts +0 -12
- package/api/resources/customModels/types/TranscriptionMetadata.js +0 -5
- package/api/resources/customModels/types/Type.d.ts +0 -10
- package/api/resources/customModels/types/Type.js +0 -12
- package/api/resources/customModels/types/Unconfigurable.d.ts +0 -7
- package/api/resources/customModels/types/Unconfigurable.js +0 -5
- package/api/resources/customModels/types/UnionJob.d.ts +0 -19
- package/api/resources/customModels/types/UnionJob.js +0 -5
- package/api/resources/customModels/types/UnionJobJobEmbeddingGeneration.d.ts +0 -6
- package/api/resources/customModels/types/UnionJobJobEmbeddingGeneration.js +0 -5
- package/api/resources/customModels/types/UnionJobJobInference.d.ts +0 -6
- package/api/resources/customModels/types/UnionJobJobInference.js +0 -5
- package/api/resources/customModels/types/UnionJobJobTlInference.d.ts +0 -6
- package/api/resources/customModels/types/UnionJobJobTlInference.js +0 -5
- package/api/resources/customModels/types/UnionJobJobTraining.d.ts +0 -6
- package/api/resources/customModels/types/UnionJobJobTraining.js +0 -5
- package/api/resources/customModels/types/UnionPredictResult.d.ts +0 -5
- package/api/resources/customModels/types/UnionPredictResult.js +0 -5
- package/api/resources/customModels/types/Unit.d.ts +0 -4
- package/api/resources/customModels/types/Unit.js +0 -5
- package/api/resources/customModels/types/Url.d.ts +0 -7
- package/api/resources/customModels/types/Url.js +0 -5
- package/api/resources/customModels/types/ValidationArgs.d.ts +0 -7
- package/api/resources/customModels/types/ValidationArgs.js +0 -5
- package/api/resources/customModels/types/When.d.ts +0 -8
- package/api/resources/customModels/types/When.js +0 -10
- package/api/resources/customModels/types/Window.d.ts +0 -9
- package/api/resources/customModels/types/Window.js +0 -5
- package/api/resources/customModels/types/index.d.ts +0 -144
- package/api/resources/customModels/types/index.js +0 -160
- package/api/resources/empathicVoice/client/StreamSocket.d.ts +0 -48
- package/api/resources/empathicVoice/client/StreamSocket.js +0 -139
- package/api/resources/empathicVoice/client/index.d.ts +0 -1
- package/api/resources/empathicVoice/client/index.js +0 -17
- package/api/resources/empathicVoice/types/Error_.d.ts +0 -18
- package/api/resources/empathicVoice/types/Error_.js +0 -5
- package/core/websocket/WebSocket.d.ts +0 -6
- package/core/websocket/WebSocket.js +0 -44
- package/dist/api/resources/customModels/client/Client.d.ts +0 -33
- package/dist/api/resources/customModels/client/Client.js +0 -32
- package/dist/api/resources/customModels/client/index.d.ts +0 -1
- package/dist/api/resources/customModels/client/index.js +0 -2
- package/dist/api/resources/customModels/index.d.ts +0 -3
- package/dist/api/resources/customModels/index.js +0 -19
- package/dist/api/resources/customModels/resources/datasets/client/Client.d.ts +0 -126
- package/dist/api/resources/customModels/resources/datasets/client/Client.js +0 -584
- package/dist/api/resources/customModels/resources/datasets/client/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/datasets/client/index.js +0 -17
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetRequest.d.ts +0 -13
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetVersionRequest.d.ts +0 -9
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsCreateDatasetVersionRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetFilesRequest.d.ts +0 -21
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetFilesRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionFilesRequest.d.ts +0 -21
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionFilesRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionsRequest.d.ts +0 -21
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetVersionsRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetsRequest.d.ts +0 -25
- package/dist/api/resources/customModels/resources/datasets/client/requests/DatasetsListDatasetsRequest.js +0 -5
- package/dist/api/resources/customModels/resources/datasets/client/requests/index.d.ts +0 -6
- package/dist/api/resources/customModels/resources/datasets/client/requests/index.js +0 -2
- package/dist/api/resources/customModels/resources/datasets/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/datasets/index.js +0 -17
- package/dist/api/resources/customModels/resources/files/client/Client.d.ts +0 -107
- package/dist/api/resources/customModels/resources/files/client/Client.js +0 -438
- package/dist/api/resources/customModels/resources/files/client/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/files/client/index.js +0 -17
- package/dist/api/resources/customModels/resources/files/client/requests/FilesListFilesRequest.d.ts +0 -21
- package/dist/api/resources/customModels/resources/files/client/requests/FilesListFilesRequest.js +0 -5
- package/dist/api/resources/customModels/resources/files/client/requests/FilesUpdateFileNameRequest.d.ts +0 -15
- package/dist/api/resources/customModels/resources/files/client/requests/FilesUpdateFileNameRequest.js +0 -5
- package/dist/api/resources/customModels/resources/files/client/requests/FilesUploadFileRequest.d.ts +0 -9
- package/dist/api/resources/customModels/resources/files/client/requests/FilesUploadFileRequest.js +0 -5
- package/dist/api/resources/customModels/resources/files/client/requests/index.d.ts +0 -3
- package/dist/api/resources/customModels/resources/files/client/requests/index.js +0 -2
- package/dist/api/resources/customModels/resources/files/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/files/index.js +0 -17
- package/dist/api/resources/customModels/resources/index.d.ts +0 -7
- package/dist/api/resources/customModels/resources/index.js +0 -36
- package/dist/api/resources/customModels/resources/jobs/client/Client.d.ts +0 -56
- package/dist/api/resources/customModels/resources/jobs/client/Client.js +0 -177
- package/dist/api/resources/customModels/resources/jobs/client/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/jobs/client/index.js +0 -2
- package/dist/api/resources/customModels/resources/jobs/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/jobs/index.js +0 -17
- package/dist/api/resources/customModels/resources/models/client/Client.d.ts +0 -90
- package/dist/api/resources/customModels/resources/models/client/Client.js +0 -417
- package/dist/api/resources/customModels/resources/models/client/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/models/client/index.js +0 -17
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsGetModelVersionRequest.d.ts +0 -13
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsGetModelVersionRequest.js +0 -5
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsListModelVersionsRequest.d.ts +0 -25
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsListModelVersionsRequest.js +0 -5
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsListModelsRequest.d.ts +0 -25
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsListModelsRequest.js +0 -5
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsUpdateModelNameRequest.d.ts +0 -15
- package/dist/api/resources/customModels/resources/models/client/requests/ModelsUpdateModelNameRequest.js +0 -5
- package/dist/api/resources/customModels/resources/models/client/requests/index.d.ts +0 -4
- package/dist/api/resources/customModels/resources/models/client/requests/index.js +0 -2
- package/dist/api/resources/customModels/resources/models/index.d.ts +0 -1
- package/dist/api/resources/customModels/resources/models/index.js +0 -17
- package/dist/api/resources/customModels/types/Alternative.d.ts +0 -4
- package/dist/api/resources/customModels/types/Alternative.js +0 -5
- package/dist/api/resources/customModels/types/AttributeFilter.d.ts +0 -12
- package/dist/api/resources/customModels/types/AttributeFilter.js +0 -5
- package/dist/api/resources/customModels/types/AuthorizedFile.d.ts +0 -40
- package/dist/api/resources/customModels/types/AuthorizedFile.js +0 -5
- package/dist/api/resources/customModels/types/Bcp47Tag.d.ts +0 -35
- package/dist/api/resources/customModels/types/Bcp47Tag.js +0 -37
- package/dist/api/resources/customModels/types/BoundingBox.d.ts +0 -16
- package/dist/api/resources/customModels/types/BoundingBox.js +0 -5
- package/dist/api/resources/customModels/types/BurstPrediction.d.ts +0 -11
- package/dist/api/resources/customModels/types/BurstPrediction.js +0 -5
- package/dist/api/resources/customModels/types/Classification.d.ts +0 -4
- package/dist/api/resources/customModels/types/Classification.js +0 -5
- package/dist/api/resources/customModels/types/CompletedEmbeddingGeneration.d.ts +0 -11
- package/dist/api/resources/customModels/types/CompletedEmbeddingGeneration.js +0 -5
- package/dist/api/resources/customModels/types/CompletedInference.d.ts +0 -15
- package/dist/api/resources/customModels/types/CompletedInference.js +0 -5
- package/dist/api/resources/customModels/types/CompletedTlInference.d.ts +0 -15
- package/dist/api/resources/customModels/types/CompletedTlInference.js +0 -5
- package/dist/api/resources/customModels/types/CompletedTraining.d.ts +0 -14
- package/dist/api/resources/customModels/types/CompletedTraining.js +0 -5
- package/dist/api/resources/customModels/types/CustomModel.d.ts +0 -5
- package/dist/api/resources/customModels/types/CustomModel.js +0 -5
- package/dist/api/resources/customModels/types/CustomModelId.d.ts +0 -6
- package/dist/api/resources/customModels/types/CustomModelId.js +0 -5
- package/dist/api/resources/customModels/types/CustomModelPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/CustomModelPrediction.js +0 -5
- package/dist/api/resources/customModels/types/CustomModelRequest.d.ts +0 -9
- package/dist/api/resources/customModels/types/CustomModelRequest.js +0 -5
- package/dist/api/resources/customModels/types/CustomModelVersionId.d.ts +0 -6
- package/dist/api/resources/customModels/types/CustomModelVersionId.js +0 -5
- package/dist/api/resources/customModels/types/Dataset.d.ts +0 -5
- package/dist/api/resources/customModels/types/Dataset.js +0 -5
- package/dist/api/resources/customModels/types/DatasetId.d.ts +0 -6
- package/dist/api/resources/customModels/types/DatasetId.js +0 -5
- package/dist/api/resources/customModels/types/DatasetLabels.d.ts +0 -21
- package/dist/api/resources/customModels/types/DatasetLabels.js +0 -5
- package/dist/api/resources/customModels/types/DatasetLabelsFileUriInput.d.ts +0 -12
- package/dist/api/resources/customModels/types/DatasetLabelsFileUriInput.js +0 -5
- package/dist/api/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.d.ts +0 -14
- package/dist/api/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.js +0 -13
- package/dist/api/resources/customModels/types/DatasetPage.d.ts +0 -18
- package/dist/api/resources/customModels/types/DatasetPage.js +0 -5
- package/dist/api/resources/customModels/types/DatasetVersion.d.ts +0 -20
- package/dist/api/resources/customModels/types/DatasetVersion.js +0 -5
- package/dist/api/resources/customModels/types/DatasetVersionFeatureTypesValue.d.ts +0 -14
- package/dist/api/resources/customModels/types/DatasetVersionFeatureTypesValue.js +0 -13
- package/dist/api/resources/customModels/types/DatasetVersionId.d.ts +0 -6
- package/dist/api/resources/customModels/types/DatasetVersionId.js +0 -5
- package/dist/api/resources/customModels/types/DatasetVersionPage.d.ts +0 -18
- package/dist/api/resources/customModels/types/DatasetVersionPage.js +0 -5
- package/dist/api/resources/customModels/types/DescriptionsScore.d.ts +0 -9
- package/dist/api/resources/customModels/types/DescriptionsScore.js +0 -5
- package/dist/api/resources/customModels/types/Direction.d.ts +0 -8
- package/dist/api/resources/customModels/types/Direction.js +0 -10
- package/dist/api/resources/customModels/types/EmbeddingGenerationBaseRequest.d.ts +0 -8
- package/dist/api/resources/customModels/types/EmbeddingGenerationBaseRequest.js +0 -5
- package/dist/api/resources/customModels/types/EmotionScore.d.ts +0 -9
- package/dist/api/resources/customModels/types/EmotionScore.js +0 -5
- package/dist/api/resources/customModels/types/Error_.d.ts +0 -9
- package/dist/api/resources/customModels/types/Error_.js +0 -5
- package/dist/api/resources/customModels/types/EvaluationArgs.d.ts +0 -7
- package/dist/api/resources/customModels/types/EvaluationArgs.js +0 -5
- package/dist/api/resources/customModels/types/ExternalModel.d.ts +0 -23
- package/dist/api/resources/customModels/types/ExternalModel.js +0 -5
- package/dist/api/resources/customModels/types/ExternalModelVersion.d.ts +0 -37
- package/dist/api/resources/customModels/types/ExternalModelVersion.js +0 -5
- package/dist/api/resources/customModels/types/ExternalModelVersionFileType.d.ts +0 -15
- package/dist/api/resources/customModels/types/ExternalModelVersionFileType.js +0 -14
- package/dist/api/resources/customModels/types/ExternalModelVersionTag.d.ts +0 -12
- package/dist/api/resources/customModels/types/ExternalModelVersionTag.js +0 -5
- package/dist/api/resources/customModels/types/Face.d.ts +0 -18
- package/dist/api/resources/customModels/types/Face.js +0 -5
- package/dist/api/resources/customModels/types/FacePrediction.d.ts +0 -19
- package/dist/api/resources/customModels/types/FacePrediction.js +0 -5
- package/dist/api/resources/customModels/types/FacemeshPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/FacemeshPrediction.js +0 -5
- package/dist/api/resources/customModels/types/FacsScore.d.ts +0 -9
- package/dist/api/resources/customModels/types/FacsScore.js +0 -5
- package/dist/api/resources/customModels/types/Failed.d.ts +0 -13
- package/dist/api/resources/customModels/types/Failed.js +0 -5
- package/dist/api/resources/customModels/types/FileInput.d.ts +0 -16
- package/dist/api/resources/customModels/types/FileInput.js +0 -5
- package/dist/api/resources/customModels/types/FilePage.d.ts +0 -18
- package/dist/api/resources/customModels/types/FilePage.js +0 -5
- package/dist/api/resources/customModels/types/FileWithAttributes.d.ts +0 -9
- package/dist/api/resources/customModels/types/FileWithAttributes.js +0 -5
- package/dist/api/resources/customModels/types/FileWithAttributesInput.d.ts +0 -9
- package/dist/api/resources/customModels/types/FileWithAttributesInput.js +0 -5
- package/dist/api/resources/customModels/types/File_.d.ts +0 -11
- package/dist/api/resources/customModels/types/File_.js +0 -5
- package/dist/api/resources/customModels/types/Granularity.d.ts +0 -13
- package/dist/api/resources/customModels/types/Granularity.js +0 -12
- package/dist/api/resources/customModels/types/GroupedPredictionsBurstPrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsBurstPrediction.js +0 -5
- package/dist/api/resources/customModels/types/GroupedPredictionsFacePrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsFacePrediction.js +0 -5
- package/dist/api/resources/customModels/types/GroupedPredictionsFacemeshPrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsFacemeshPrediction.js +0 -5
- package/dist/api/resources/customModels/types/GroupedPredictionsLanguagePrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsLanguagePrediction.js +0 -5
- package/dist/api/resources/customModels/types/GroupedPredictionsNerPrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsNerPrediction.js +0 -5
- package/dist/api/resources/customModels/types/GroupedPredictionsProsodyPrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/GroupedPredictionsProsodyPrediction.js +0 -5
- package/dist/api/resources/customModels/types/InProgress.d.ts +0 -9
- package/dist/api/resources/customModels/types/InProgress.js +0 -5
- package/dist/api/resources/customModels/types/InferenceBaseRequest.d.ts +0 -22
- package/dist/api/resources/customModels/types/InferenceBaseRequest.js +0 -5
- package/dist/api/resources/customModels/types/InferencePrediction.d.ts +0 -9
- package/dist/api/resources/customModels/types/InferencePrediction.js +0 -5
- package/dist/api/resources/customModels/types/InferenceRequest.d.ts +0 -23
- package/dist/api/resources/customModels/types/InferenceRequest.js +0 -5
- package/dist/api/resources/customModels/types/InferenceResults.d.ts +0 -8
- package/dist/api/resources/customModels/types/InferenceResults.js +0 -5
- package/dist/api/resources/customModels/types/InferenceSourcePredictResult.d.ts +0 -10
- package/dist/api/resources/customModels/types/InferenceSourcePredictResult.js +0 -5
- package/dist/api/resources/customModels/types/JobEmbeddingGeneration.d.ts +0 -11
- package/dist/api/resources/customModels/types/JobEmbeddingGeneration.js +0 -5
- package/dist/api/resources/customModels/types/JobId.d.ts +0 -7
- package/dist/api/resources/customModels/types/JobId.js +0 -5
- package/dist/api/resources/customModels/types/JobInference.d.ts +0 -11
- package/dist/api/resources/customModels/types/JobInference.js +0 -5
- package/dist/api/resources/customModels/types/JobTlInference.d.ts +0 -11
- package/dist/api/resources/customModels/types/JobTlInference.js +0 -5
- package/dist/api/resources/customModels/types/JobTraining.d.ts +0 -11
- package/dist/api/resources/customModels/types/JobTraining.js +0 -5
- package/dist/api/resources/customModels/types/JsonObject.d.ts +0 -6
- package/dist/api/resources/customModels/types/JsonObject.js +0 -5
- package/dist/api/resources/customModels/types/Language.d.ts +0 -11
- package/dist/api/resources/customModels/types/Language.js +0 -5
- package/dist/api/resources/customModels/types/LanguagePrediction.d.ts +0 -24
- package/dist/api/resources/customModels/types/LanguagePrediction.js +0 -5
- package/dist/api/resources/customModels/types/ModelPage.d.ts +0 -18
- package/dist/api/resources/customModels/types/ModelPage.js +0 -5
- package/dist/api/resources/customModels/types/Models.d.ts +0 -12
- package/dist/api/resources/customModels/types/Models.js +0 -5
- package/dist/api/resources/customModels/types/ModelsPredictions.d.ts +0 -12
- package/dist/api/resources/customModels/types/ModelsPredictions.js +0 -5
- package/dist/api/resources/customModels/types/Ner.d.ts +0 -7
- package/dist/api/resources/customModels/types/Ner.js +0 -5
- package/dist/api/resources/customModels/types/NerPrediction.d.ts +0 -24
- package/dist/api/resources/customModels/types/NerPrediction.js +0 -5
- package/dist/api/resources/customModels/types/Null.d.ts +0 -7
- package/dist/api/resources/customModels/types/Null.js +0 -5
- package/dist/api/resources/customModels/types/PageableObject.d.ts +0 -12
- package/dist/api/resources/customModels/types/PageableObject.js +0 -5
- package/dist/api/resources/customModels/types/PositionInterval.d.ts +0 -12
- package/dist/api/resources/customModels/types/PositionInterval.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalNullBurstPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalNullBurstPrediction.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalNullFacePrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalNullFacePrediction.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +0 -5
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +0 -8
- package/dist/api/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +0 -5
- package/dist/api/resources/customModels/types/Prosody.d.ts +0 -10
- package/dist/api/resources/customModels/types/Prosody.js +0 -5
- package/dist/api/resources/customModels/types/ProsodyPrediction.d.ts +0 -15
- package/dist/api/resources/customModels/types/ProsodyPrediction.js +0 -5
- package/dist/api/resources/customModels/types/Queued.d.ts +0 -7
- package/dist/api/resources/customModels/types/Queued.js +0 -5
- package/dist/api/resources/customModels/types/RegistryFileDetail.d.ts +0 -9
- package/dist/api/resources/customModels/types/RegistryFileDetail.js +0 -5
- package/dist/api/resources/customModels/types/Regression.d.ts +0 -4
- package/dist/api/resources/customModels/types/Regression.js +0 -5
- package/dist/api/resources/customModels/types/ReturnDataset.d.ts +0 -15
- package/dist/api/resources/customModels/types/ReturnDataset.js +0 -5
- package/dist/api/resources/customModels/types/SentimentScore.d.ts +0 -9
- package/dist/api/resources/customModels/types/SentimentScore.js +0 -5
- package/dist/api/resources/customModels/types/SortBy.d.ts +0 -9
- package/dist/api/resources/customModels/types/SortBy.js +0 -11
- package/dist/api/resources/customModels/types/SortObject.d.ts +0 -8
- package/dist/api/resources/customModels/types/SortObject.js +0 -5
- package/dist/api/resources/customModels/types/Source.d.ts +0 -16
- package/dist/api/resources/customModels/types/Source.js +0 -5
- package/dist/api/resources/customModels/types/SourceFile.d.ts +0 -6
- package/dist/api/resources/customModels/types/SourceFile.js +0 -5
- package/dist/api/resources/customModels/types/SourceTextSource.d.ts +0 -5
- package/dist/api/resources/customModels/types/SourceTextSource.js +0 -5
- package/dist/api/resources/customModels/types/SourceUrl.d.ts +0 -6
- package/dist/api/resources/customModels/types/SourceUrl.js +0 -5
- package/dist/api/resources/customModels/types/StateEmbeddingGeneration.d.ts +0 -19
- package/dist/api/resources/customModels/types/StateEmbeddingGeneration.js +0 -5
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.js +0 -5
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationFailed.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationFailed.js +0 -5
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationInProgress.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationInProgress.js +0 -5
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationQueued.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateEmbeddingGenerationQueued.js +0 -5
- package/dist/api/resources/customModels/types/StateInference.d.ts +0 -19
- package/dist/api/resources/customModels/types/StateInference.js +0 -5
- package/dist/api/resources/customModels/types/StateInferenceCompletedInference.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateInferenceCompletedInference.js +0 -5
- package/dist/api/resources/customModels/types/StateInferenceFailed.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateInferenceFailed.js +0 -5
- package/dist/api/resources/customModels/types/StateInferenceInProgress.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateInferenceInProgress.js +0 -5
- package/dist/api/resources/customModels/types/StateInferenceQueued.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateInferenceQueued.js +0 -5
- package/dist/api/resources/customModels/types/StateTlInference.d.ts +0 -19
- package/dist/api/resources/customModels/types/StateTlInference.js +0 -5
- package/dist/api/resources/customModels/types/StateTlInferenceCompletedTlInference.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTlInferenceCompletedTlInference.js +0 -5
- package/dist/api/resources/customModels/types/StateTlInferenceFailed.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTlInferenceFailed.js +0 -5
- package/dist/api/resources/customModels/types/StateTlInferenceInProgress.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTlInferenceInProgress.js +0 -5
- package/dist/api/resources/customModels/types/StateTlInferenceQueued.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTlInferenceQueued.js +0 -5
- package/dist/api/resources/customModels/types/StateTraining.d.ts +0 -19
- package/dist/api/resources/customModels/types/StateTraining.js +0 -5
- package/dist/api/resources/customModels/types/StateTrainingCompletedTraining.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTrainingCompletedTraining.js +0 -5
- package/dist/api/resources/customModels/types/StateTrainingFailed.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTrainingFailed.js +0 -5
- package/dist/api/resources/customModels/types/StateTrainingInProgress.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTrainingInProgress.js +0 -5
- package/dist/api/resources/customModels/types/StateTrainingQueued.d.ts +0 -6
- package/dist/api/resources/customModels/types/StateTrainingQueued.js +0 -5
- package/dist/api/resources/customModels/types/Status.d.ts +0 -10
- package/dist/api/resources/customModels/types/Status.js +0 -12
- package/dist/api/resources/customModels/types/Tag.d.ts +0 -7
- package/dist/api/resources/customModels/types/Tag.js +0 -5
- package/dist/api/resources/customModels/types/Target.d.ts +0 -4
- package/dist/api/resources/customModels/types/Target.js +0 -5
- package/dist/api/resources/customModels/types/Task.d.ts +0 -13
- package/dist/api/resources/customModels/types/Task.js +0 -5
- package/dist/api/resources/customModels/types/TaskClassification.d.ts +0 -5
- package/dist/api/resources/customModels/types/TaskClassification.js +0 -5
- package/dist/api/resources/customModels/types/TaskRegression.d.ts +0 -5
- package/dist/api/resources/customModels/types/TaskRegression.js +0 -5
- package/dist/api/resources/customModels/types/TextSource.d.ts +0 -4
- package/dist/api/resources/customModels/types/TextSource.js +0 -5
- package/dist/api/resources/customModels/types/TimeInterval.d.ts +0 -12
- package/dist/api/resources/customModels/types/TimeInterval.js +0 -5
- package/dist/api/resources/customModels/types/TlInferenceBaseRequest.d.ts +0 -19
- package/dist/api/resources/customModels/types/TlInferenceBaseRequest.js +0 -5
- package/dist/api/resources/customModels/types/TlInferencePrediction.d.ts +0 -10
- package/dist/api/resources/customModels/types/TlInferencePrediction.js +0 -5
- package/dist/api/resources/customModels/types/TlInferenceResults.d.ts +0 -8
- package/dist/api/resources/customModels/types/TlInferenceResults.js +0 -5
- package/dist/api/resources/customModels/types/TlInferenceSourcePredictResult.d.ts +0 -10
- package/dist/api/resources/customModels/types/TlInferenceSourcePredictResult.js +0 -5
- package/dist/api/resources/customModels/types/ToxicityScore.d.ts +0 -9
- package/dist/api/resources/customModels/types/ToxicityScore.js +0 -5
- package/dist/api/resources/customModels/types/TrainingBaseRequest.d.ts +0 -14
- package/dist/api/resources/customModels/types/TrainingBaseRequest.js +0 -5
- package/dist/api/resources/customModels/types/TrainingCustomModel.d.ts +0 -7
- package/dist/api/resources/customModels/types/TrainingCustomModel.js +0 -5
- package/dist/api/resources/customModels/types/Transcription.d.ts +0 -11
- package/dist/api/resources/customModels/types/Transcription.js +0 -5
- package/dist/api/resources/customModels/types/TranscriptionMetadata.d.ts +0 -12
- package/dist/api/resources/customModels/types/TranscriptionMetadata.js +0 -5
- package/dist/api/resources/customModels/types/Type.d.ts +0 -10
- package/dist/api/resources/customModels/types/Type.js +0 -12
- package/dist/api/resources/customModels/types/Unconfigurable.d.ts +0 -7
- package/dist/api/resources/customModels/types/Unconfigurable.js +0 -5
- package/dist/api/resources/customModels/types/UnionJob.d.ts +0 -19
- package/dist/api/resources/customModels/types/UnionJob.js +0 -5
- package/dist/api/resources/customModels/types/UnionJobJobEmbeddingGeneration.d.ts +0 -6
- package/dist/api/resources/customModels/types/UnionJobJobEmbeddingGeneration.js +0 -5
- package/dist/api/resources/customModels/types/UnionJobJobInference.d.ts +0 -6
- package/dist/api/resources/customModels/types/UnionJobJobInference.js +0 -5
- package/dist/api/resources/customModels/types/UnionJobJobTlInference.d.ts +0 -6
- package/dist/api/resources/customModels/types/UnionJobJobTlInference.js +0 -5
- package/dist/api/resources/customModels/types/UnionJobJobTraining.d.ts +0 -6
- package/dist/api/resources/customModels/types/UnionJobJobTraining.js +0 -5
- package/dist/api/resources/customModels/types/UnionPredictResult.d.ts +0 -5
- package/dist/api/resources/customModels/types/UnionPredictResult.js +0 -5
- package/dist/api/resources/customModels/types/Unit.d.ts +0 -4
- package/dist/api/resources/customModels/types/Unit.js +0 -5
- package/dist/api/resources/customModels/types/Url.d.ts +0 -7
- package/dist/api/resources/customModels/types/Url.js +0 -5
- package/dist/api/resources/customModels/types/ValidationArgs.d.ts +0 -7
- package/dist/api/resources/customModels/types/ValidationArgs.js +0 -5
- package/dist/api/resources/customModels/types/When.d.ts +0 -8
- package/dist/api/resources/customModels/types/When.js +0 -10
- package/dist/api/resources/customModels/types/Window.d.ts +0 -9
- package/dist/api/resources/customModels/types/Window.js +0 -5
- package/dist/api/resources/customModels/types/index.d.ts +0 -144
- package/dist/api/resources/customModels/types/index.js +0 -160
- package/dist/api/resources/empathicVoice/client/StreamSocket.d.ts +0 -48
- package/dist/api/resources/empathicVoice/client/StreamSocket.js +0 -139
- package/dist/api/resources/empathicVoice/client/index.d.ts +0 -1
- package/dist/api/resources/empathicVoice/client/index.js +0 -17
- package/dist/api/resources/empathicVoice/types/Error_.d.ts +0 -18
- package/dist/api/resources/empathicVoice/types/Error_.js +0 -5
- package/dist/core/websocket/WebSocket.d.ts +0 -6
- package/dist/core/websocket/WebSocket.js +0 -44
- package/dist/serialization/resources/customModels/index.d.ts +0 -2
- package/dist/serialization/resources/customModels/index.js +0 -18
- package/dist/serialization/resources/customModels/resources/datasets/client/createDatasetVersion.d.ts +0 -11
- package/dist/serialization/resources/customModels/resources/datasets/client/createDatasetVersion.js +0 -32
- package/dist/serialization/resources/customModels/resources/datasets/client/index.d.ts +0 -3
- package/dist/serialization/resources/customModels/resources/datasets/client/index.js +0 -29
- package/dist/serialization/resources/customModels/resources/datasets/client/listDatasetFiles.d.ts +0 -11
- package/dist/serialization/resources/customModels/resources/datasets/client/listDatasetFiles.js +0 -32
- package/dist/serialization/resources/customModels/resources/datasets/client/listDatasetVersionFiles.d.ts +0 -11
- package/dist/serialization/resources/customModels/resources/datasets/client/listDatasetVersionFiles.js +0 -32
- package/dist/serialization/resources/customModels/resources/datasets/index.d.ts +0 -1
- package/dist/serialization/resources/customModels/resources/datasets/index.js +0 -17
- package/dist/serialization/resources/customModels/resources/files/client/createFiles.d.ts +0 -16
- package/dist/serialization/resources/customModels/resources/files/client/createFiles.js +0 -34
- package/dist/serialization/resources/customModels/resources/files/client/index.d.ts +0 -1
- package/dist/serialization/resources/customModels/resources/files/client/index.js +0 -27
- package/dist/serialization/resources/customModels/resources/files/index.d.ts +0 -1
- package/dist/serialization/resources/customModels/resources/files/index.js +0 -17
- package/dist/serialization/resources/customModels/resources/index.d.ts +0 -3
- package/dist/serialization/resources/customModels/resources/index.js +0 -29
- package/dist/serialization/resources/customModels/resources/models/client/index.d.ts +0 -2
- package/dist/serialization/resources/customModels/resources/models/client/index.js +0 -28
- package/dist/serialization/resources/customModels/resources/models/client/listModelVersions.d.ts +0 -11
- package/dist/serialization/resources/customModels/resources/models/client/listModelVersions.js +0 -32
- package/dist/serialization/resources/customModels/resources/models/client/updateModelDescription.d.ts +0 -9
- package/dist/serialization/resources/customModels/resources/models/client/updateModelDescription.js +0 -31
- package/dist/serialization/resources/customModels/resources/models/index.d.ts +0 -1
- package/dist/serialization/resources/customModels/resources/models/index.js +0 -17
- package/dist/serialization/resources/customModels/types/Alternative.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Alternative.js +0 -31
- package/dist/serialization/resources/customModels/types/AttributeFilter.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/AttributeFilter.js +0 -34
- package/dist/serialization/resources/customModels/types/AuthorizedFile.d.ts +0 -27
- package/dist/serialization/resources/customModels/types/AuthorizedFile.js +0 -50
- package/dist/serialization/resources/customModels/types/Bcp47Tag.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Bcp47Tag.js +0 -61
- package/dist/serialization/resources/customModels/types/BoundingBox.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/BoundingBox.js +0 -36
- package/dist/serialization/resources/customModels/types/BurstPrediction.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/BurstPrediction.js +0 -38
- package/dist/serialization/resources/customModels/types/Classification.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Classification.js +0 -31
- package/dist/serialization/resources/customModels/types/CompletedEmbeddingGeneration.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/CompletedEmbeddingGeneration.js +0 -35
- package/dist/serialization/resources/customModels/types/CompletedInference.d.ts +0 -16
- package/dist/serialization/resources/customModels/types/CompletedInference.js +0 -37
- package/dist/serialization/resources/customModels/types/CompletedTlInference.d.ts +0 -16
- package/dist/serialization/resources/customModels/types/CompletedTlInference.js +0 -37
- package/dist/serialization/resources/customModels/types/CompletedTraining.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/CompletedTraining.js +0 -38
- package/dist/serialization/resources/customModels/types/CustomModel.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/CustomModel.js +0 -33
- package/dist/serialization/resources/customModels/types/CustomModelId.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/CustomModelId.js +0 -33
- package/dist/serialization/resources/customModels/types/CustomModelPrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/CustomModelPrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/CustomModelRequest.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/CustomModelRequest.js +0 -36
- package/dist/serialization/resources/customModels/types/CustomModelVersionId.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/CustomModelVersionId.js +0 -33
- package/dist/serialization/resources/customModels/types/Dataset.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/Dataset.js +0 -33
- package/dist/serialization/resources/customModels/types/DatasetId.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/DatasetId.js +0 -33
- package/dist/serialization/resources/customModels/types/DatasetLabels.d.ts +0 -19
- package/dist/serialization/resources/customModels/types/DatasetLabels.js +0 -40
- package/dist/serialization/resources/customModels/types/DatasetLabelsFileUriInput.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/DatasetLabelsFileUriInput.js +0 -36
- package/dist/serialization/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.js +0 -31
- package/dist/serialization/resources/customModels/types/DatasetPage.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/DatasetPage.js +0 -47
- package/dist/serialization/resources/customModels/types/DatasetVersion.d.ts +0 -19
- package/dist/serialization/resources/customModels/types/DatasetVersion.js +0 -40
- package/dist/serialization/resources/customModels/types/DatasetVersionFeatureTypesValue.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/DatasetVersionFeatureTypesValue.js +0 -31
- package/dist/serialization/resources/customModels/types/DatasetVersionId.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/DatasetVersionId.js +0 -33
- package/dist/serialization/resources/customModels/types/DatasetVersionPage.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/DatasetVersionPage.js +0 -47
- package/dist/serialization/resources/customModels/types/DescriptionsScore.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/DescriptionsScore.js +0 -34
- package/dist/serialization/resources/customModels/types/Direction.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Direction.js +0 -31
- package/dist/serialization/resources/customModels/types/EmbeddingGenerationBaseRequest.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/EmbeddingGenerationBaseRequest.js +0 -34
- package/dist/serialization/resources/customModels/types/EmotionScore.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/EmotionScore.js +0 -34
- package/dist/serialization/resources/customModels/types/Error_.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/Error_.js +0 -34
- package/dist/serialization/resources/customModels/types/EvaluationArgs.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/EvaluationArgs.js +0 -34
- package/dist/serialization/resources/customModels/types/ExternalModel.d.ts +0 -21
- package/dist/serialization/resources/customModels/types/ExternalModel.js +0 -42
- package/dist/serialization/resources/customModels/types/ExternalModelVersion.d.ts +0 -27
- package/dist/serialization/resources/customModels/types/ExternalModelVersion.js +0 -50
- package/dist/serialization/resources/customModels/types/ExternalModelVersionFileType.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/ExternalModelVersionFileType.js +0 -31
- package/dist/serialization/resources/customModels/types/ExternalModelVersionTag.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/ExternalModelVersionTag.js +0 -34
- package/dist/serialization/resources/customModels/types/Face.d.ts +0 -19
- package/dist/serialization/resources/customModels/types/Face.js +0 -40
- package/dist/serialization/resources/customModels/types/FacePrediction.d.ts +0 -22
- package/dist/serialization/resources/customModels/types/FacePrediction.js +0 -43
- package/dist/serialization/resources/customModels/types/FacemeshPrediction.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/FacemeshPrediction.js +0 -34
- package/dist/serialization/resources/customModels/types/FacsScore.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/FacsScore.js +0 -34
- package/dist/serialization/resources/customModels/types/Failed.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/Failed.js +0 -36
- package/dist/serialization/resources/customModels/types/FileInput.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/FileInput.js +0 -36
- package/dist/serialization/resources/customModels/types/FilePage.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/FilePage.js +0 -47
- package/dist/serialization/resources/customModels/types/FileWithAttributes.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/FileWithAttributes.js +0 -36
- package/dist/serialization/resources/customModels/types/FileWithAttributesInput.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/FileWithAttributesInput.js +0 -36
- package/dist/serialization/resources/customModels/types/File_.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/File_.js +0 -35
- package/dist/serialization/resources/customModels/types/Granularity.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Granularity.js +0 -31
- package/dist/serialization/resources/customModels/types/GroupedPredictionsBurstPrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsBurstPrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/GroupedPredictionsFacePrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsFacePrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/GroupedPredictionsFacemeshPrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsFacemeshPrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/GroupedPredictionsLanguagePrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsLanguagePrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/GroupedPredictionsNerPrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsNerPrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/GroupedPredictionsProsodyPrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/GroupedPredictionsProsodyPrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/InProgress.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/InProgress.js +0 -34
- package/dist/serialization/resources/customModels/types/InferenceBaseRequest.d.ts +0 -20
- package/dist/serialization/resources/customModels/types/InferenceBaseRequest.js +0 -41
- package/dist/serialization/resources/customModels/types/InferencePrediction.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/InferencePrediction.js +0 -35
- package/dist/serialization/resources/customModels/types/InferenceRequest.d.ts +0 -22
- package/dist/serialization/resources/customModels/types/InferenceRequest.js +0 -43
- package/dist/serialization/resources/customModels/types/InferenceResults.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/InferenceResults.js +0 -36
- package/dist/serialization/resources/customModels/types/InferenceSourcePredictResult.d.ts +0 -16
- package/dist/serialization/resources/customModels/types/InferenceSourcePredictResult.js +0 -37
- package/dist/serialization/resources/customModels/types/JobEmbeddingGeneration.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/JobEmbeddingGeneration.js +0 -38
- package/dist/serialization/resources/customModels/types/JobId.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/JobId.js +0 -33
- package/dist/serialization/resources/customModels/types/JobInference.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/JobInference.js +0 -38
- package/dist/serialization/resources/customModels/types/JobTlInference.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/JobTlInference.js +0 -38
- package/dist/serialization/resources/customModels/types/JobTraining.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/JobTraining.js +0 -38
- package/dist/serialization/resources/customModels/types/JsonObject.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/JsonObject.js +0 -33
- package/dist/serialization/resources/customModels/types/Language.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/Language.js +0 -38
- package/dist/serialization/resources/customModels/types/LanguagePrediction.d.ts +0 -24
- package/dist/serialization/resources/customModels/types/LanguagePrediction.js +0 -45
- package/dist/serialization/resources/customModels/types/ModelPage.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/ModelPage.js +0 -47
- package/dist/serialization/resources/customModels/types/Models.d.ts +0 -22
- package/dist/serialization/resources/customModels/types/Models.js +0 -43
- package/dist/serialization/resources/customModels/types/ModelsPredictions.d.ts +0 -23
- package/dist/serialization/resources/customModels/types/ModelsPredictions.js +0 -44
- package/dist/serialization/resources/customModels/types/Ner.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/Ner.js +0 -33
- package/dist/serialization/resources/customModels/types/NerPrediction.d.ts +0 -24
- package/dist/serialization/resources/customModels/types/NerPrediction.js +0 -45
- package/dist/serialization/resources/customModels/types/Null.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Null.js +0 -31
- package/dist/serialization/resources/customModels/types/PageableObject.d.ts +0 -18
- package/dist/serialization/resources/customModels/types/PageableObject.js +0 -39
- package/dist/serialization/resources/customModels/types/PositionInterval.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/PositionInterval.js +0 -34
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullBurstPrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullBurstPrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullFacePrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullFacePrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/Prosody.d.ts +0 -16
- package/dist/serialization/resources/customModels/types/Prosody.js +0 -37
- package/dist/serialization/resources/customModels/types/ProsodyPrediction.d.ts +0 -18
- package/dist/serialization/resources/customModels/types/ProsodyPrediction.js +0 -39
- package/dist/serialization/resources/customModels/types/Queued.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/Queued.js +0 -33
- package/dist/serialization/resources/customModels/types/RegistryFileDetail.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/RegistryFileDetail.js +0 -34
- package/dist/serialization/resources/customModels/types/Regression.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Regression.js +0 -31
- package/dist/serialization/resources/customModels/types/ReturnDataset.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/ReturnDataset.js +0 -40
- package/dist/serialization/resources/customModels/types/SentimentScore.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/SentimentScore.js +0 -34
- package/dist/serialization/resources/customModels/types/SortBy.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/SortBy.js +0 -31
- package/dist/serialization/resources/customModels/types/SortObject.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/SortObject.js +0 -35
- package/dist/serialization/resources/customModels/types/Source.d.ts +0 -22
- package/dist/serialization/resources/customModels/types/Source.js +0 -43
- package/dist/serialization/resources/customModels/types/SourceFile.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/SourceFile.js +0 -32
- package/dist/serialization/resources/customModels/types/SourceTextSource.d.ts +0 -11
- package/dist/serialization/resources/customModels/types/SourceTextSource.js +0 -31
- package/dist/serialization/resources/customModels/types/SourceUrl.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/SourceUrl.js +0 -32
- package/dist/serialization/resources/customModels/types/StateEmbeddingGeneration.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/StateEmbeddingGeneration.js +0 -45
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.js +0 -32
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationFailed.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationFailed.js +0 -32
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationInProgress.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationInProgress.js +0 -32
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationQueued.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateEmbeddingGenerationQueued.js +0 -32
- package/dist/serialization/resources/customModels/types/StateInference.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/StateInference.js +0 -45
- package/dist/serialization/resources/customModels/types/StateInferenceCompletedInference.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateInferenceCompletedInference.js +0 -32
- package/dist/serialization/resources/customModels/types/StateInferenceFailed.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateInferenceFailed.js +0 -32
- package/dist/serialization/resources/customModels/types/StateInferenceInProgress.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateInferenceInProgress.js +0 -32
- package/dist/serialization/resources/customModels/types/StateInferenceQueued.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateInferenceQueued.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTlInference.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/StateTlInference.js +0 -45
- package/dist/serialization/resources/customModels/types/StateTlInferenceCompletedTlInference.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTlInferenceCompletedTlInference.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTlInferenceFailed.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTlInferenceFailed.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTlInferenceInProgress.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTlInferenceInProgress.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTlInferenceQueued.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTlInferenceQueued.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTraining.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/StateTraining.js +0 -45
- package/dist/serialization/resources/customModels/types/StateTrainingCompletedTraining.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTrainingCompletedTraining.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTrainingFailed.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTrainingFailed.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTrainingInProgress.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTrainingInProgress.js +0 -32
- package/dist/serialization/resources/customModels/types/StateTrainingQueued.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/StateTrainingQueued.js +0 -32
- package/dist/serialization/resources/customModels/types/Status.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Status.js +0 -31
- package/dist/serialization/resources/customModels/types/Tag.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/Tag.js +0 -34
- package/dist/serialization/resources/customModels/types/Target.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Target.js +0 -35
- package/dist/serialization/resources/customModels/types/Task.d.ts +0 -18
- package/dist/serialization/resources/customModels/types/Task.js +0 -41
- package/dist/serialization/resources/customModels/types/TaskClassification.d.ts +0 -11
- package/dist/serialization/resources/customModels/types/TaskClassification.js +0 -31
- package/dist/serialization/resources/customModels/types/TaskRegression.d.ts +0 -11
- package/dist/serialization/resources/customModels/types/TaskRegression.js +0 -31
- package/dist/serialization/resources/customModels/types/TextSource.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/TextSource.js +0 -31
- package/dist/serialization/resources/customModels/types/TimeInterval.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/TimeInterval.js +0 -34
- package/dist/serialization/resources/customModels/types/TlInferenceBaseRequest.d.ts +0 -17
- package/dist/serialization/resources/customModels/types/TlInferenceBaseRequest.js +0 -38
- package/dist/serialization/resources/customModels/types/TlInferencePrediction.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/TlInferencePrediction.js +0 -36
- package/dist/serialization/resources/customModels/types/TlInferenceResults.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/TlInferenceResults.js +0 -36
- package/dist/serialization/resources/customModels/types/TlInferenceSourcePredictResult.d.ts +0 -16
- package/dist/serialization/resources/customModels/types/TlInferenceSourcePredictResult.js +0 -37
- package/dist/serialization/resources/customModels/types/ToxicityScore.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/ToxicityScore.js +0 -34
- package/dist/serialization/resources/customModels/types/TrainingBaseRequest.d.ts +0 -24
- package/dist/serialization/resources/customModels/types/TrainingBaseRequest.js +0 -45
- package/dist/serialization/resources/customModels/types/TrainingCustomModel.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/TrainingCustomModel.js +0 -34
- package/dist/serialization/resources/customModels/types/Transcription.d.ts +0 -15
- package/dist/serialization/resources/customModels/types/Transcription.js +0 -36
- package/dist/serialization/resources/customModels/types/TranscriptionMetadata.d.ts +0 -14
- package/dist/serialization/resources/customModels/types/TranscriptionMetadata.js +0 -35
- package/dist/serialization/resources/customModels/types/Type.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Type.js +0 -31
- package/dist/serialization/resources/customModels/types/Unconfigurable.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Unconfigurable.js +0 -31
- package/dist/serialization/resources/customModels/types/UnionJob.d.ts +0 -26
- package/dist/serialization/resources/customModels/types/UnionJob.js +0 -45
- package/dist/serialization/resources/customModels/types/UnionJobJobEmbeddingGeneration.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/UnionJobJobEmbeddingGeneration.js +0 -32
- package/dist/serialization/resources/customModels/types/UnionJobJobInference.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/UnionJobJobInference.js +0 -32
- package/dist/serialization/resources/customModels/types/UnionJobJobTlInference.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/UnionJobJobTlInference.js +0 -32
- package/dist/serialization/resources/customModels/types/UnionJobJobTraining.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/UnionJobJobTraining.js +0 -32
- package/dist/serialization/resources/customModels/types/UnionPredictResult.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/UnionPredictResult.js +0 -33
- package/dist/serialization/resources/customModels/types/Unit.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/Unit.js +0 -31
- package/dist/serialization/resources/customModels/types/Url.d.ts +0 -12
- package/dist/serialization/resources/customModels/types/Url.js +0 -33
- package/dist/serialization/resources/customModels/types/ValidationArgs.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/ValidationArgs.js +0 -34
- package/dist/serialization/resources/customModels/types/When.d.ts +0 -10
- package/dist/serialization/resources/customModels/types/When.js +0 -31
- package/dist/serialization/resources/customModels/types/Window.d.ts +0 -13
- package/dist/serialization/resources/customModels/types/Window.js +0 -34
- package/dist/serialization/resources/customModels/types/index.d.ts +0 -144
- package/dist/serialization/resources/customModels/types/index.js +0 -160
- package/dist/serialization/resources/empathicVoice/types/Error_.d.ts +0 -16
- package/dist/serialization/resources/empathicVoice/types/Error_.js +0 -37
- package/dist/wrapper/empathicVoice/EmpathicVoiceClient.d.ts +0 -11
- package/dist/wrapper/empathicVoice/EmpathicVoiceClient.js +0 -12
- package/dist/wrapper/empathicVoice/chat/ChatClient.d.ts +0 -30
- package/dist/wrapper/empathicVoice/chat/ChatClient.js +0 -156
- package/serialization/resources/customModels/index.d.ts +0 -2
- package/serialization/resources/customModels/index.js +0 -18
- package/serialization/resources/customModels/resources/datasets/client/createDatasetVersion.d.ts +0 -11
- package/serialization/resources/customModels/resources/datasets/client/createDatasetVersion.js +0 -32
- package/serialization/resources/customModels/resources/datasets/client/index.d.ts +0 -3
- package/serialization/resources/customModels/resources/datasets/client/index.js +0 -29
- package/serialization/resources/customModels/resources/datasets/client/listDatasetFiles.d.ts +0 -11
- package/serialization/resources/customModels/resources/datasets/client/listDatasetFiles.js +0 -32
- package/serialization/resources/customModels/resources/datasets/client/listDatasetVersionFiles.d.ts +0 -11
- package/serialization/resources/customModels/resources/datasets/client/listDatasetVersionFiles.js +0 -32
- package/serialization/resources/customModels/resources/datasets/index.d.ts +0 -1
- package/serialization/resources/customModels/resources/datasets/index.js +0 -17
- package/serialization/resources/customModels/resources/files/client/createFiles.d.ts +0 -16
- package/serialization/resources/customModels/resources/files/client/createFiles.js +0 -34
- package/serialization/resources/customModels/resources/files/client/index.d.ts +0 -1
- package/serialization/resources/customModels/resources/files/client/index.js +0 -27
- package/serialization/resources/customModels/resources/files/index.d.ts +0 -1
- package/serialization/resources/customModels/resources/files/index.js +0 -17
- package/serialization/resources/customModels/resources/index.d.ts +0 -3
- package/serialization/resources/customModels/resources/index.js +0 -29
- package/serialization/resources/customModels/resources/models/client/index.d.ts +0 -2
- package/serialization/resources/customModels/resources/models/client/index.js +0 -28
- package/serialization/resources/customModels/resources/models/client/listModelVersions.d.ts +0 -11
- package/serialization/resources/customModels/resources/models/client/listModelVersions.js +0 -32
- package/serialization/resources/customModels/resources/models/client/updateModelDescription.d.ts +0 -9
- package/serialization/resources/customModels/resources/models/client/updateModelDescription.js +0 -31
- package/serialization/resources/customModels/resources/models/index.d.ts +0 -1
- package/serialization/resources/customModels/resources/models/index.js +0 -17
- package/serialization/resources/customModels/types/Alternative.d.ts +0 -10
- package/serialization/resources/customModels/types/Alternative.js +0 -31
- package/serialization/resources/customModels/types/AttributeFilter.d.ts +0 -13
- package/serialization/resources/customModels/types/AttributeFilter.js +0 -34
- package/serialization/resources/customModels/types/AuthorizedFile.d.ts +0 -27
- package/serialization/resources/customModels/types/AuthorizedFile.js +0 -50
- package/serialization/resources/customModels/types/Bcp47Tag.d.ts +0 -10
- package/serialization/resources/customModels/types/Bcp47Tag.js +0 -61
- package/serialization/resources/customModels/types/BoundingBox.d.ts +0 -15
- package/serialization/resources/customModels/types/BoundingBox.js +0 -36
- package/serialization/resources/customModels/types/BurstPrediction.d.ts +0 -17
- package/serialization/resources/customModels/types/BurstPrediction.js +0 -38
- package/serialization/resources/customModels/types/Classification.d.ts +0 -10
- package/serialization/resources/customModels/types/Classification.js +0 -31
- package/serialization/resources/customModels/types/CompletedEmbeddingGeneration.d.ts +0 -14
- package/serialization/resources/customModels/types/CompletedEmbeddingGeneration.js +0 -35
- package/serialization/resources/customModels/types/CompletedInference.d.ts +0 -16
- package/serialization/resources/customModels/types/CompletedInference.js +0 -37
- package/serialization/resources/customModels/types/CompletedTlInference.d.ts +0 -16
- package/serialization/resources/customModels/types/CompletedTlInference.js +0 -37
- package/serialization/resources/customModels/types/CompletedTraining.d.ts +0 -17
- package/serialization/resources/customModels/types/CompletedTraining.js +0 -38
- package/serialization/resources/customModels/types/CustomModel.d.ts +0 -12
- package/serialization/resources/customModels/types/CustomModel.js +0 -33
- package/serialization/resources/customModels/types/CustomModelId.d.ts +0 -12
- package/serialization/resources/customModels/types/CustomModelId.js +0 -33
- package/serialization/resources/customModels/types/CustomModelPrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/CustomModelPrediction.js +0 -35
- package/serialization/resources/customModels/types/CustomModelRequest.d.ts +0 -15
- package/serialization/resources/customModels/types/CustomModelRequest.js +0 -36
- package/serialization/resources/customModels/types/CustomModelVersionId.d.ts +0 -12
- package/serialization/resources/customModels/types/CustomModelVersionId.js +0 -33
- package/serialization/resources/customModels/types/Dataset.d.ts +0 -12
- package/serialization/resources/customModels/types/Dataset.js +0 -33
- package/serialization/resources/customModels/types/DatasetId.d.ts +0 -12
- package/serialization/resources/customModels/types/DatasetId.js +0 -33
- package/serialization/resources/customModels/types/DatasetLabels.d.ts +0 -19
- package/serialization/resources/customModels/types/DatasetLabels.js +0 -40
- package/serialization/resources/customModels/types/DatasetLabelsFileUriInput.d.ts +0 -15
- package/serialization/resources/customModels/types/DatasetLabelsFileUriInput.js +0 -36
- package/serialization/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.d.ts +0 -10
- package/serialization/resources/customModels/types/DatasetLabelsFileUriInputFeatureTypesValue.js +0 -31
- package/serialization/resources/customModels/types/DatasetPage.d.ts +0 -26
- package/serialization/resources/customModels/types/DatasetPage.js +0 -47
- package/serialization/resources/customModels/types/DatasetVersion.d.ts +0 -19
- package/serialization/resources/customModels/types/DatasetVersion.js +0 -40
- package/serialization/resources/customModels/types/DatasetVersionFeatureTypesValue.d.ts +0 -10
- package/serialization/resources/customModels/types/DatasetVersionFeatureTypesValue.js +0 -31
- package/serialization/resources/customModels/types/DatasetVersionId.d.ts +0 -12
- package/serialization/resources/customModels/types/DatasetVersionId.js +0 -33
- package/serialization/resources/customModels/types/DatasetVersionPage.d.ts +0 -26
- package/serialization/resources/customModels/types/DatasetVersionPage.js +0 -47
- package/serialization/resources/customModels/types/DescriptionsScore.d.ts +0 -13
- package/serialization/resources/customModels/types/DescriptionsScore.js +0 -34
- package/serialization/resources/customModels/types/Direction.d.ts +0 -10
- package/serialization/resources/customModels/types/Direction.js +0 -31
- package/serialization/resources/customModels/types/EmbeddingGenerationBaseRequest.d.ts +0 -13
- package/serialization/resources/customModels/types/EmbeddingGenerationBaseRequest.js +0 -34
- package/serialization/resources/customModels/types/EmotionScore.d.ts +0 -13
- package/serialization/resources/customModels/types/EmotionScore.js +0 -34
- package/serialization/resources/customModels/types/Error_.d.ts +0 -13
- package/serialization/resources/customModels/types/Error_.js +0 -34
- package/serialization/resources/customModels/types/EvaluationArgs.d.ts +0 -13
- package/serialization/resources/customModels/types/EvaluationArgs.js +0 -34
- package/serialization/resources/customModels/types/ExternalModel.d.ts +0 -21
- package/serialization/resources/customModels/types/ExternalModel.js +0 -42
- package/serialization/resources/customModels/types/ExternalModelVersion.d.ts +0 -27
- package/serialization/resources/customModels/types/ExternalModelVersion.js +0 -50
- package/serialization/resources/customModels/types/ExternalModelVersionFileType.d.ts +0 -10
- package/serialization/resources/customModels/types/ExternalModelVersionFileType.js +0 -31
- package/serialization/resources/customModels/types/ExternalModelVersionTag.d.ts +0 -13
- package/serialization/resources/customModels/types/ExternalModelVersionTag.js +0 -34
- package/serialization/resources/customModels/types/Face.d.ts +0 -19
- package/serialization/resources/customModels/types/Face.js +0 -40
- package/serialization/resources/customModels/types/FacePrediction.d.ts +0 -22
- package/serialization/resources/customModels/types/FacePrediction.js +0 -43
- package/serialization/resources/customModels/types/FacemeshPrediction.d.ts +0 -13
- package/serialization/resources/customModels/types/FacemeshPrediction.js +0 -34
- package/serialization/resources/customModels/types/FacsScore.d.ts +0 -13
- package/serialization/resources/customModels/types/FacsScore.js +0 -34
- package/serialization/resources/customModels/types/Failed.d.ts +0 -15
- package/serialization/resources/customModels/types/Failed.js +0 -36
- package/serialization/resources/customModels/types/FileInput.d.ts +0 -15
- package/serialization/resources/customModels/types/FileInput.js +0 -36
- package/serialization/resources/customModels/types/FilePage.d.ts +0 -26
- package/serialization/resources/customModels/types/FilePage.js +0 -47
- package/serialization/resources/customModels/types/FileWithAttributes.d.ts +0 -15
- package/serialization/resources/customModels/types/FileWithAttributes.js +0 -36
- package/serialization/resources/customModels/types/FileWithAttributesInput.d.ts +0 -15
- package/serialization/resources/customModels/types/FileWithAttributesInput.js +0 -36
- package/serialization/resources/customModels/types/File_.d.ts +0 -14
- package/serialization/resources/customModels/types/File_.js +0 -35
- package/serialization/resources/customModels/types/Granularity.d.ts +0 -10
- package/serialization/resources/customModels/types/Granularity.js +0 -31
- package/serialization/resources/customModels/types/GroupedPredictionsBurstPrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsBurstPrediction.js +0 -35
- package/serialization/resources/customModels/types/GroupedPredictionsFacePrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsFacePrediction.js +0 -35
- package/serialization/resources/customModels/types/GroupedPredictionsFacemeshPrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsFacemeshPrediction.js +0 -35
- package/serialization/resources/customModels/types/GroupedPredictionsLanguagePrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsLanguagePrediction.js +0 -35
- package/serialization/resources/customModels/types/GroupedPredictionsNerPrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsNerPrediction.js +0 -35
- package/serialization/resources/customModels/types/GroupedPredictionsProsodyPrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/GroupedPredictionsProsodyPrediction.js +0 -35
- package/serialization/resources/customModels/types/InProgress.d.ts +0 -13
- package/serialization/resources/customModels/types/InProgress.js +0 -34
- package/serialization/resources/customModels/types/InferenceBaseRequest.d.ts +0 -20
- package/serialization/resources/customModels/types/InferenceBaseRequest.js +0 -41
- package/serialization/resources/customModels/types/InferencePrediction.d.ts +0 -14
- package/serialization/resources/customModels/types/InferencePrediction.js +0 -35
- package/serialization/resources/customModels/types/InferenceRequest.d.ts +0 -22
- package/serialization/resources/customModels/types/InferenceRequest.js +0 -43
- package/serialization/resources/customModels/types/InferenceResults.d.ts +0 -15
- package/serialization/resources/customModels/types/InferenceResults.js +0 -36
- package/serialization/resources/customModels/types/InferenceSourcePredictResult.d.ts +0 -16
- package/serialization/resources/customModels/types/InferenceSourcePredictResult.js +0 -37
- package/serialization/resources/customModels/types/JobEmbeddingGeneration.d.ts +0 -17
- package/serialization/resources/customModels/types/JobEmbeddingGeneration.js +0 -38
- package/serialization/resources/customModels/types/JobId.d.ts +0 -12
- package/serialization/resources/customModels/types/JobId.js +0 -33
- package/serialization/resources/customModels/types/JobInference.d.ts +0 -17
- package/serialization/resources/customModels/types/JobInference.js +0 -38
- package/serialization/resources/customModels/types/JobTlInference.d.ts +0 -17
- package/serialization/resources/customModels/types/JobTlInference.js +0 -38
- package/serialization/resources/customModels/types/JobTraining.d.ts +0 -17
- package/serialization/resources/customModels/types/JobTraining.js +0 -38
- package/serialization/resources/customModels/types/JsonObject.d.ts +0 -12
- package/serialization/resources/customModels/types/JsonObject.js +0 -33
- package/serialization/resources/customModels/types/Language.d.ts +0 -17
- package/serialization/resources/customModels/types/Language.js +0 -38
- package/serialization/resources/customModels/types/LanguagePrediction.d.ts +0 -24
- package/serialization/resources/customModels/types/LanguagePrediction.js +0 -45
- package/serialization/resources/customModels/types/ModelPage.d.ts +0 -26
- package/serialization/resources/customModels/types/ModelPage.js +0 -47
- package/serialization/resources/customModels/types/Models.d.ts +0 -22
- package/serialization/resources/customModels/types/Models.js +0 -43
- package/serialization/resources/customModels/types/ModelsPredictions.d.ts +0 -23
- package/serialization/resources/customModels/types/ModelsPredictions.js +0 -44
- package/serialization/resources/customModels/types/Ner.d.ts +0 -12
- package/serialization/resources/customModels/types/Ner.js +0 -33
- package/serialization/resources/customModels/types/NerPrediction.d.ts +0 -24
- package/serialization/resources/customModels/types/NerPrediction.js +0 -45
- package/serialization/resources/customModels/types/Null.d.ts +0 -10
- package/serialization/resources/customModels/types/Null.js +0 -31
- package/serialization/resources/customModels/types/PageableObject.d.ts +0 -18
- package/serialization/resources/customModels/types/PageableObject.js +0 -39
- package/serialization/resources/customModels/types/PositionInterval.d.ts +0 -13
- package/serialization/resources/customModels/types/PositionInterval.js +0 -34
- package/serialization/resources/customModels/types/PredictionsOptionalNullBurstPrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalNullBurstPrediction.js +0 -36
- package/serialization/resources/customModels/types/PredictionsOptionalNullFacePrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalNullFacePrediction.js +0 -36
- package/serialization/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalNullFacemeshPrediction.js +0 -36
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataLanguagePrediction.js +0 -36
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataNerPrediction.js +0 -36
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/PredictionsOptionalTranscriptionMetadataProsodyPrediction.js +0 -36
- package/serialization/resources/customModels/types/Prosody.d.ts +0 -16
- package/serialization/resources/customModels/types/Prosody.js +0 -37
- package/serialization/resources/customModels/types/ProsodyPrediction.d.ts +0 -18
- package/serialization/resources/customModels/types/ProsodyPrediction.js +0 -39
- package/serialization/resources/customModels/types/Queued.d.ts +0 -12
- package/serialization/resources/customModels/types/Queued.js +0 -33
- package/serialization/resources/customModels/types/RegistryFileDetail.d.ts +0 -13
- package/serialization/resources/customModels/types/RegistryFileDetail.js +0 -34
- package/serialization/resources/customModels/types/Regression.d.ts +0 -10
- package/serialization/resources/customModels/types/Regression.js +0 -31
- package/serialization/resources/customModels/types/ReturnDataset.d.ts +0 -17
- package/serialization/resources/customModels/types/ReturnDataset.js +0 -40
- package/serialization/resources/customModels/types/SentimentScore.d.ts +0 -13
- package/serialization/resources/customModels/types/SentimentScore.js +0 -34
- package/serialization/resources/customModels/types/SortBy.d.ts +0 -10
- package/serialization/resources/customModels/types/SortBy.js +0 -31
- package/serialization/resources/customModels/types/SortObject.d.ts +0 -14
- package/serialization/resources/customModels/types/SortObject.js +0 -35
- package/serialization/resources/customModels/types/Source.d.ts +0 -22
- package/serialization/resources/customModels/types/Source.js +0 -43
- package/serialization/resources/customModels/types/SourceFile.d.ts +0 -12
- package/serialization/resources/customModels/types/SourceFile.js +0 -32
- package/serialization/resources/customModels/types/SourceTextSource.d.ts +0 -11
- package/serialization/resources/customModels/types/SourceTextSource.js +0 -31
- package/serialization/resources/customModels/types/SourceUrl.d.ts +0 -12
- package/serialization/resources/customModels/types/SourceUrl.js +0 -32
- package/serialization/resources/customModels/types/StateEmbeddingGeneration.d.ts +0 -26
- package/serialization/resources/customModels/types/StateEmbeddingGeneration.js +0 -45
- package/serialization/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.d.ts +0 -12
- package/serialization/resources/customModels/types/StateEmbeddingGenerationCompletedEmbeddingGeneration.js +0 -32
- package/serialization/resources/customModels/types/StateEmbeddingGenerationFailed.d.ts +0 -12
- package/serialization/resources/customModels/types/StateEmbeddingGenerationFailed.js +0 -32
- package/serialization/resources/customModels/types/StateEmbeddingGenerationInProgress.d.ts +0 -12
- package/serialization/resources/customModels/types/StateEmbeddingGenerationInProgress.js +0 -32
- package/serialization/resources/customModels/types/StateEmbeddingGenerationQueued.d.ts +0 -12
- package/serialization/resources/customModels/types/StateEmbeddingGenerationQueued.js +0 -32
- package/serialization/resources/customModels/types/StateInference.d.ts +0 -26
- package/serialization/resources/customModels/types/StateInference.js +0 -45
- package/serialization/resources/customModels/types/StateInferenceCompletedInference.d.ts +0 -12
- package/serialization/resources/customModels/types/StateInferenceCompletedInference.js +0 -32
- package/serialization/resources/customModels/types/StateInferenceFailed.d.ts +0 -12
- package/serialization/resources/customModels/types/StateInferenceFailed.js +0 -32
- package/serialization/resources/customModels/types/StateInferenceInProgress.d.ts +0 -12
- package/serialization/resources/customModels/types/StateInferenceInProgress.js +0 -32
- package/serialization/resources/customModels/types/StateInferenceQueued.d.ts +0 -12
- package/serialization/resources/customModels/types/StateInferenceQueued.js +0 -32
- package/serialization/resources/customModels/types/StateTlInference.d.ts +0 -26
- package/serialization/resources/customModels/types/StateTlInference.js +0 -45
- package/serialization/resources/customModels/types/StateTlInferenceCompletedTlInference.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTlInferenceCompletedTlInference.js +0 -32
- package/serialization/resources/customModels/types/StateTlInferenceFailed.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTlInferenceFailed.js +0 -32
- package/serialization/resources/customModels/types/StateTlInferenceInProgress.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTlInferenceInProgress.js +0 -32
- package/serialization/resources/customModels/types/StateTlInferenceQueued.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTlInferenceQueued.js +0 -32
- package/serialization/resources/customModels/types/StateTraining.d.ts +0 -26
- package/serialization/resources/customModels/types/StateTraining.js +0 -45
- package/serialization/resources/customModels/types/StateTrainingCompletedTraining.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTrainingCompletedTraining.js +0 -32
- package/serialization/resources/customModels/types/StateTrainingFailed.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTrainingFailed.js +0 -32
- package/serialization/resources/customModels/types/StateTrainingInProgress.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTrainingInProgress.js +0 -32
- package/serialization/resources/customModels/types/StateTrainingQueued.d.ts +0 -12
- package/serialization/resources/customModels/types/StateTrainingQueued.js +0 -32
- package/serialization/resources/customModels/types/Status.d.ts +0 -10
- package/serialization/resources/customModels/types/Status.js +0 -31
- package/serialization/resources/customModels/types/Tag.d.ts +0 -13
- package/serialization/resources/customModels/types/Tag.js +0 -34
- package/serialization/resources/customModels/types/Target.d.ts +0 -10
- package/serialization/resources/customModels/types/Target.js +0 -35
- package/serialization/resources/customModels/types/Task.d.ts +0 -18
- package/serialization/resources/customModels/types/Task.js +0 -41
- package/serialization/resources/customModels/types/TaskClassification.d.ts +0 -11
- package/serialization/resources/customModels/types/TaskClassification.js +0 -31
- package/serialization/resources/customModels/types/TaskRegression.d.ts +0 -11
- package/serialization/resources/customModels/types/TaskRegression.js +0 -31
- package/serialization/resources/customModels/types/TextSource.d.ts +0 -10
- package/serialization/resources/customModels/types/TextSource.js +0 -31
- package/serialization/resources/customModels/types/TimeInterval.d.ts +0 -13
- package/serialization/resources/customModels/types/TimeInterval.js +0 -34
- package/serialization/resources/customModels/types/TlInferenceBaseRequest.d.ts +0 -17
- package/serialization/resources/customModels/types/TlInferenceBaseRequest.js +0 -38
- package/serialization/resources/customModels/types/TlInferencePrediction.d.ts +0 -15
- package/serialization/resources/customModels/types/TlInferencePrediction.js +0 -36
- package/serialization/resources/customModels/types/TlInferenceResults.d.ts +0 -15
- package/serialization/resources/customModels/types/TlInferenceResults.js +0 -36
- package/serialization/resources/customModels/types/TlInferenceSourcePredictResult.d.ts +0 -16
- package/serialization/resources/customModels/types/TlInferenceSourcePredictResult.js +0 -37
- package/serialization/resources/customModels/types/ToxicityScore.d.ts +0 -13
- package/serialization/resources/customModels/types/ToxicityScore.js +0 -34
- package/serialization/resources/customModels/types/TrainingBaseRequest.d.ts +0 -24
- package/serialization/resources/customModels/types/TrainingBaseRequest.js +0 -45
- package/serialization/resources/customModels/types/TrainingCustomModel.d.ts +0 -13
- package/serialization/resources/customModels/types/TrainingCustomModel.js +0 -34
- package/serialization/resources/customModels/types/Transcription.d.ts +0 -15
- package/serialization/resources/customModels/types/Transcription.js +0 -36
- package/serialization/resources/customModels/types/TranscriptionMetadata.d.ts +0 -14
- package/serialization/resources/customModels/types/TranscriptionMetadata.js +0 -35
- package/serialization/resources/customModels/types/Type.d.ts +0 -10
- package/serialization/resources/customModels/types/Type.js +0 -31
- package/serialization/resources/customModels/types/Unconfigurable.d.ts +0 -10
- package/serialization/resources/customModels/types/Unconfigurable.js +0 -31
- package/serialization/resources/customModels/types/UnionJob.d.ts +0 -26
- package/serialization/resources/customModels/types/UnionJob.js +0 -45
- package/serialization/resources/customModels/types/UnionJobJobEmbeddingGeneration.d.ts +0 -12
- package/serialization/resources/customModels/types/UnionJobJobEmbeddingGeneration.js +0 -32
- package/serialization/resources/customModels/types/UnionJobJobInference.d.ts +0 -12
- package/serialization/resources/customModels/types/UnionJobJobInference.js +0 -32
- package/serialization/resources/customModels/types/UnionJobJobTlInference.d.ts +0 -12
- package/serialization/resources/customModels/types/UnionJobJobTlInference.js +0 -32
- package/serialization/resources/customModels/types/UnionJobJobTraining.d.ts +0 -12
- package/serialization/resources/customModels/types/UnionJobJobTraining.js +0 -32
- package/serialization/resources/customModels/types/UnionPredictResult.d.ts +0 -12
- package/serialization/resources/customModels/types/UnionPredictResult.js +0 -33
- package/serialization/resources/customModels/types/Unit.d.ts +0 -10
- package/serialization/resources/customModels/types/Unit.js +0 -31
- package/serialization/resources/customModels/types/Url.d.ts +0 -12
- package/serialization/resources/customModels/types/Url.js +0 -33
- package/serialization/resources/customModels/types/ValidationArgs.d.ts +0 -13
- package/serialization/resources/customModels/types/ValidationArgs.js +0 -34
- package/serialization/resources/customModels/types/When.d.ts +0 -10
- package/serialization/resources/customModels/types/When.js +0 -31
- package/serialization/resources/customModels/types/Window.d.ts +0 -13
- package/serialization/resources/customModels/types/Window.js +0 -34
- package/serialization/resources/customModels/types/index.d.ts +0 -144
- package/serialization/resources/customModels/types/index.js +0 -160
- package/serialization/resources/empathicVoice/types/Error_.d.ts +0 -16
- package/serialization/resources/empathicVoice/types/Error_.js +0 -37
- package/wrapper/empathicVoice/EmpathicVoiceClient.d.ts +0 -11
- package/wrapper/empathicVoice/EmpathicVoiceClient.js +0 -12
- package/wrapper/empathicVoice/chat/ChatClient.d.ts +0 -30
- package/wrapper/empathicVoice/chat/ChatClient.js +0 -156
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsCreateDatasetRequest.js → empathicVoice/types/ExtendedVoiceArgs.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsCreateDatasetVersionRequest.js → empathicVoice/types/FunctionCallResponseInput.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetFilesRequest.js → empathicVoice/types/HttpValidationError.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetVersionFilesRequest.js → empathicVoice/types/PostedCustomVoice.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetVersionsRequest.js → empathicVoice/types/PostedCustomVoiceName.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetsRequest.js → empathicVoice/types/PostedEventMessageSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesListFilesRequest.js → empathicVoice/types/PostedTimeoutSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesUpdateFileNameRequest.js → empathicVoice/types/ReturnCustomVoice.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesUploadFileRequest.js → empathicVoice/types/ReturnEventMessageSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsGetModelVersionRequest.js → empathicVoice/types/ReturnPagedCustomVoices.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsListModelVersionsRequest.js → empathicVoice/types/ReturnPrivacySettings.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsListModelsRequest.js → empathicVoice/types/ReturnPurgeStats.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsUpdateModelNameRequest.js → empathicVoice/types/ReturnTimeoutSpecs.js} +0 -0
- /package/api/resources/{customModels/types/Alternative.js → empathicVoice/types/TextInput.js} +0 -0
- /package/api/resources/{customModels/types/AttributeFilter.js → empathicVoice/types/TtsInput.js} +0 -0
- /package/api/resources/{customModels/types/AuthorizedFile.js → empathicVoice/types/ValidationError.js} +0 -0
- /package/api/resources/{customModels/types/BoundingBox.js → empathicVoice/types/ValidationErrorLocItem.js} +0 -0
- /package/api/resources/{customModels/types/BurstPrediction.js → empathicVoice/types/VoiceArgs.js} +0 -0
- /package/api/resources/{customModels/types/Classification.js → empathicVoice/types/WebSocketError.js} +0 -0
- /package/{api/resources/customModels/types/CompletedEmbeddingGeneration.js → dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.js} +0 -0
- /package/{api/resources/customModels/types/CompletedInference.js → dist/api/resources/empathicVoice/types/FunctionCallResponseInput.js} +0 -0
- /package/{api/resources/customModels/types/CompletedTlInference.js → dist/api/resources/empathicVoice/types/HttpValidationError.js} +0 -0
- /package/{api/resources/customModels/types/CompletedTraining.js → dist/api/resources/empathicVoice/types/PostedCustomVoice.js} +0 -0
- /package/{api/resources/customModels/types/CustomModel.js → dist/api/resources/empathicVoice/types/PostedCustomVoiceName.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelId.js → dist/api/resources/empathicVoice/types/PostedEventMessageSpecs.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelPrediction.js → dist/api/resources/empathicVoice/types/PostedTimeoutSpecs.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelRequest.js → dist/api/resources/empathicVoice/types/ReturnCustomVoice.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelVersionId.js → dist/api/resources/empathicVoice/types/ReturnEventMessageSpecs.js} +0 -0
- /package/{api/resources/customModels/types/Dataset.js → dist/api/resources/empathicVoice/types/ReturnPagedCustomVoices.js} +0 -0
- /package/{api/resources/customModels/types/DatasetId.js → dist/api/resources/empathicVoice/types/ReturnPrivacySettings.js} +0 -0
- /package/{api/resources/customModels/types/DatasetLabels.js → dist/api/resources/empathicVoice/types/ReturnPurgeStats.js} +0 -0
- /package/{api/resources/customModels/types/DatasetLabelsFileUriInput.js → dist/api/resources/empathicVoice/types/ReturnTimeoutSpecs.js} +0 -0
- /package/{api/resources/customModels/types/DatasetPage.js → dist/api/resources/empathicVoice/types/TextInput.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersion.js → dist/api/resources/empathicVoice/types/TtsInput.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersionId.js → dist/api/resources/empathicVoice/types/ValidationError.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersionPage.js → dist/api/resources/empathicVoice/types/ValidationErrorLocItem.js} +0 -0
- /package/{api/resources/customModels/types/DescriptionsScore.js → dist/api/resources/empathicVoice/types/VoiceArgs.js} +0 -0
- /package/{api/resources/customModels/types/EmbeddingGenerationBaseRequest.js → dist/api/resources/empathicVoice/types/WebSocketError.js} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Hume from "../../../index";
|
|
5
|
+
/**
|
|
6
|
+
* Collection of timeout specs to be posted to the server
|
|
7
|
+
*/
|
|
8
|
+
export interface PostedTimeoutSpecs {
|
|
9
|
+
inactivity?: Hume.empathicVoice.PostedTimeoutSpec;
|
|
10
|
+
maxDuration?: Hume.empathicVoice.PostedTimeoutSpec;
|
|
11
|
+
}
|
|
@@ -7,7 +7,7 @@ import * as Hume from "../../../index";
|
|
|
7
7
|
*/
|
|
8
8
|
export interface PostedVoice {
|
|
9
9
|
/** The provider of the voice to use. Based on the enum VoiceProvider. */
|
|
10
|
-
provider
|
|
11
|
-
/** String with the name of the voice to use. */
|
|
12
|
-
name
|
|
10
|
+
provider: "HUME_AI";
|
|
11
|
+
/** String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase. */
|
|
12
|
+
name?: Hume.empathicVoice.PostedVoiceName;
|
|
13
13
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
|
-
* String with the name of the voice to use.
|
|
5
|
+
* String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase.
|
|
6
6
|
*/
|
|
7
7
|
export declare type PostedVoiceName = "ITO" | "DACHER" | "KORA";
|
|
8
8
|
export declare const PostedVoiceName: {
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Resume responses from EVI. Chat history sent while paused will now be sent.
|
|
6
6
|
*/
|
|
7
7
|
export interface ResumeAssistantMessage {
|
|
8
|
-
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
9
|
-
customSessionId?: string;
|
|
10
8
|
/** The type of message sent through the socket; for a Resume Assistant message, this must be `resume_assistant_message`. */
|
|
11
9
|
type: "resume_assistant_message";
|
|
10
|
+
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
11
|
+
customSessionId?: string;
|
|
12
12
|
}
|
|
@@ -26,8 +26,5 @@ export interface ReturnConfig {
|
|
|
26
26
|
tools?: (Hume.empathicVoice.ReturnUserDefinedTool | undefined)[];
|
|
27
27
|
/** List of built-in tools associated with this config */
|
|
28
28
|
builtinTools?: (Hume.empathicVoice.ReturnBuiltinTool | undefined)[];
|
|
29
|
-
|
|
30
|
-
eventMessages?: Record<string, Hume.empathicVoice.ReturnEventMessageSpec | undefined>;
|
|
31
|
-
/** Map of timeouts associated with this config. */
|
|
32
|
-
timeouts?: Record<string, Hume.empathicVoice.ReturnTimeoutSpec | undefined>;
|
|
29
|
+
eventMessages?: Hume.empathicVoice.ReturnEventMessageSpecs;
|
|
33
30
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* A custom voice specification returned from the server
|
|
6
|
+
*/
|
|
7
|
+
export interface ReturnCustomVoice {
|
|
8
|
+
/** Identifier for a Custom Voice. Formatted as a UUID. */
|
|
9
|
+
id: string;
|
|
10
|
+
/** Version number for a Custom Voice. Version numbers should be integers. The combination of custom_voice_id and version number is unique. */
|
|
11
|
+
version: number;
|
|
12
|
+
/** String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase. */
|
|
13
|
+
name: string;
|
|
14
|
+
/** The timestamp when the first version of this prompt was created. */
|
|
15
|
+
createdOn: number;
|
|
16
|
+
/** The timestamp when this version of the prompt was created. */
|
|
17
|
+
modifiedOn: number;
|
|
18
|
+
/** The voice the custom voice is based off of. */
|
|
19
|
+
baseVoice: string;
|
|
20
|
+
/** The speech rate multiplier for this custom voice. */
|
|
21
|
+
speechRateMultiplier?: number;
|
|
22
|
+
/** The name of the parameter model used to define which attributes are used by `parameters`. */
|
|
23
|
+
parameterModel: string;
|
|
24
|
+
/** Voice specification for a Config. */
|
|
25
|
+
parameters: Record<string, number>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Hume from "../../../index";
|
|
5
|
+
/**
|
|
6
|
+
* Collection of event_message specs to be returned from the server
|
|
7
|
+
*/
|
|
8
|
+
export interface ReturnEventMessageSpecs {
|
|
9
|
+
/** `enabled` causes the LLM to generate an initial message using the system prompt. `text` is the string to use verbatim as the initial message. */
|
|
10
|
+
onNewChat?: Hume.empathicVoice.ReturnEventMessageSpec;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Hume from "../../../index";
|
|
5
|
+
/**
|
|
6
|
+
* A paginated list of custom voices returned from the server
|
|
7
|
+
*/
|
|
8
|
+
export interface ReturnPagedCustomVoices {
|
|
9
|
+
/** The page number of the returned results. */
|
|
10
|
+
pageNumber: number;
|
|
11
|
+
/** The number of results returned per page. */
|
|
12
|
+
pageSize: number;
|
|
13
|
+
/** The total number of pages in the collection */
|
|
14
|
+
totalPages: number;
|
|
15
|
+
/** List of custom voices returned for the specified page number and page size. */
|
|
16
|
+
customVoicesPage: Hume.empathicVoice.ReturnCustomVoice[];
|
|
17
|
+
}
|
|
@@ -9,7 +9,7 @@ export interface ReturnPrompt {
|
|
|
9
9
|
id: string;
|
|
10
10
|
/** Version number for a Prompt. Version numbers should be integers. The combination of configId and version number is unique. */
|
|
11
11
|
version: number;
|
|
12
|
-
/** Indicates whether this
|
|
12
|
+
/** Indicates whether this prompt is using a fixed version number or auto-updating to the latest version. Values from the VersionType enum. */
|
|
13
13
|
versionType: string;
|
|
14
14
|
/** Description that is appended to a specific version of a Prompt. */
|
|
15
15
|
versionDescription?: string;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
export interface ReturnPurgeStats {
|
|
5
|
+
id?: string;
|
|
6
|
+
numChats?: number;
|
|
7
|
+
numChatEvents?: number;
|
|
8
|
+
numConfigs?: number;
|
|
9
|
+
numPrompts?: number;
|
|
10
|
+
numTools?: number;
|
|
11
|
+
numVoices?: number;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as Hume from "../../../index";
|
|
5
|
+
/**
|
|
6
|
+
* Collection of timeout specs to be returned from the server
|
|
7
|
+
*/
|
|
8
|
+
export interface ReturnTimeoutSpecs {
|
|
9
|
+
inactivity: Hume.empathicVoice.ReturnTimeoutSpec;
|
|
10
|
+
maxDuration: Hume.empathicVoice.ReturnTimeoutSpec;
|
|
11
|
+
}
|
|
@@ -7,6 +7,6 @@
|
|
|
7
7
|
export interface ReturnVoice {
|
|
8
8
|
/** The provider of the voice to use. Based on the enum VoiceProvider. */
|
|
9
9
|
provider: string;
|
|
10
|
-
/** String with the name of the voice to use. */
|
|
11
|
-
name
|
|
10
|
+
/** String with the name of the voice to use. Maximum length of 75 characters. Will be converted to all-uppercase. */
|
|
11
|
+
name?: string;
|
|
12
12
|
}
|
|
@@ -6,20 +6,23 @@ import * as Hume from "../../../index";
|
|
|
6
6
|
* Settings for this chat session.
|
|
7
7
|
*/
|
|
8
8
|
export interface SessionSettings {
|
|
9
|
-
/**
|
|
10
|
-
|
|
11
|
-
/** List of builtin tools to enable. */
|
|
12
|
-
builtinTools?: Hume.empathicVoice.BuiltinToolConfig[];
|
|
13
|
-
/** User context to inject. Set to null to disable context injection. */
|
|
14
|
-
context?: Hume.empathicVoice.Context;
|
|
9
|
+
/** The type of message sent through the socket; for a Session Settings message, this must be `session_settings`. */
|
|
10
|
+
type: "session_settings";
|
|
15
11
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
16
12
|
customSessionId?: string;
|
|
17
|
-
/** Third party API key for the language model used for non-Hume models. */
|
|
18
|
-
languageModelApiKey?: string;
|
|
19
13
|
/** Instructions for how the system should respond to the user. Set to null to use the default system prompt. */
|
|
20
14
|
systemPrompt?: string;
|
|
15
|
+
/** User context to inject. Set to null to disable context injection. */
|
|
16
|
+
context?: Hume.empathicVoice.Context;
|
|
17
|
+
/** Audio configuration. */
|
|
18
|
+
audio?: Hume.empathicVoice.AudioConfiguration;
|
|
19
|
+
/** Third party API key for the language model used for non-Hume models. */
|
|
20
|
+
languageModelApiKey?: string;
|
|
21
21
|
/** List of tools to enable. */
|
|
22
22
|
tools?: Hume.empathicVoice.Tool[];
|
|
23
|
-
/**
|
|
24
|
-
|
|
23
|
+
/** List of builtin tools to enable. */
|
|
24
|
+
builtinTools?: Hume.empathicVoice.BuiltinToolConfig[];
|
|
25
|
+
metadata?: Record<string, unknown>;
|
|
26
|
+
/** Dynamic values that can be used to populate EVI prompts. */
|
|
27
|
+
variables?: Record<string, string>;
|
|
25
28
|
}
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import * as Hume from "../../../index";
|
|
5
5
|
export interface Tool {
|
|
6
|
-
/**
|
|
7
|
-
|
|
8
|
-
/** Fallback content of the tool, passed to the LLM if the function call response fails. */
|
|
9
|
-
fallbackContent?: string;
|
|
6
|
+
/** Type of tool. */
|
|
7
|
+
type: Hume.empathicVoice.ToolType;
|
|
10
8
|
/** Name of the tool. */
|
|
11
9
|
name: string;
|
|
12
10
|
/** Parameters of the tool. Is a stringified JSON schema. */
|
|
13
11
|
parameters: string;
|
|
14
|
-
/**
|
|
15
|
-
|
|
12
|
+
/** Description of the function. */
|
|
13
|
+
description?: string;
|
|
14
|
+
/** Fallback content of the tool, passed to the LLM if the function call response fails. */
|
|
15
|
+
fallbackContent?: string;
|
|
16
16
|
}
|
|
@@ -6,18 +6,18 @@ import * as Hume from "../../../index";
|
|
|
6
6
|
* When provided, the output is a tool call.
|
|
7
7
|
*/
|
|
8
8
|
export interface ToolCallMessage {
|
|
9
|
-
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
10
|
-
customSessionId?: string;
|
|
11
9
|
/** Name of the tool called. */
|
|
12
10
|
name: string;
|
|
13
11
|
/** Parameters of the tool call. Is a stringified JSON schema. */
|
|
14
12
|
parameters: string;
|
|
15
|
-
/** Whether a response is required from the developer. */
|
|
16
|
-
responseRequired: boolean;
|
|
17
13
|
/** ID of the tool call. */
|
|
18
14
|
toolCallId: string;
|
|
19
|
-
/** Type of tool called, either 'builtin' or 'function'. */
|
|
20
|
-
toolType?: Hume.empathicVoice.ToolType;
|
|
21
15
|
/** The type of message sent through the socket; for a Tool Call message, this must be `tool_call`. */
|
|
22
16
|
type: "tool_call";
|
|
17
|
+
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
18
|
+
customSessionId?: string;
|
|
19
|
+
/** Type of tool called, either 'builtin' or 'function'. */
|
|
20
|
+
toolType?: Hume.empathicVoice.ToolType;
|
|
21
|
+
/** Whether a response is required from the developer. */
|
|
22
|
+
responseRequired: boolean;
|
|
23
23
|
}
|
|
@@ -6,20 +6,20 @@ import * as Hume from "../../../index";
|
|
|
6
6
|
* When provided, the output is a function call error.
|
|
7
7
|
*/
|
|
8
8
|
export interface ToolErrorMessage {
|
|
9
|
-
/** Error
|
|
10
|
-
|
|
11
|
-
/** The content passed to the LLM in place of the tool response. */
|
|
12
|
-
content?: string;
|
|
9
|
+
/** The type of message sent through the socket; for a Tool Error message, this must be `tool_error`. */
|
|
10
|
+
type: "tool_error";
|
|
13
11
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
14
12
|
customSessionId?: string;
|
|
13
|
+
/** Type of tool called, either 'builtin' or 'function'. */
|
|
14
|
+
toolType?: Hume.empathicVoice.ToolType;
|
|
15
|
+
/** ID of the tool call. */
|
|
16
|
+
toolCallId: string;
|
|
17
|
+
/** The content passed to the LLM in place of the tool response. */
|
|
18
|
+
content?: string;
|
|
15
19
|
/** Error message from the tool call, not exposed to the LLM or user. */
|
|
16
20
|
error: string;
|
|
21
|
+
/** Error code. */
|
|
22
|
+
code?: string;
|
|
17
23
|
/** Error level. */
|
|
18
24
|
level?: Hume.empathicVoice.ErrorLevel;
|
|
19
|
-
/** ID of the tool call. */
|
|
20
|
-
toolCallId: string;
|
|
21
|
-
/** Type of tool called, either 'builtin' or 'function'. */
|
|
22
|
-
toolType?: Hume.empathicVoice.ToolType;
|
|
23
|
-
/** The type of message sent through the socket; for a Tool Error message, this must be `tool_error`. */
|
|
24
|
-
type: "tool_error";
|
|
25
25
|
}
|
|
@@ -6,14 +6,14 @@ import * as Hume from "../../../index";
|
|
|
6
6
|
* When provided, the output is a function call response.
|
|
7
7
|
*/
|
|
8
8
|
export interface ToolResponseMessage {
|
|
9
|
-
/**
|
|
10
|
-
|
|
9
|
+
/** The type of message sent through the socket; for a Tool Response message, this must be `tool_response`. */
|
|
10
|
+
type: "tool_response";
|
|
11
11
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
12
12
|
customSessionId?: string;
|
|
13
13
|
/** ID of the tool call. */
|
|
14
14
|
toolCallId: string;
|
|
15
|
+
/** Return value of the tool call. */
|
|
16
|
+
content: string;
|
|
15
17
|
toolName?: string;
|
|
16
18
|
toolType?: Hume.empathicVoice.ToolType;
|
|
17
|
-
/** The type of message sent through the socket; for a Tool Response message, this must be `tool_response`. */
|
|
18
|
-
type: "tool_response";
|
|
19
19
|
}
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
* User text to insert into the conversation.
|
|
6
6
|
*/
|
|
7
7
|
export interface UserInput {
|
|
8
|
+
/** The type of message sent through the socket; for a User Input message, this must be `user_input`. */
|
|
9
|
+
type: "user_input";
|
|
8
10
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
9
11
|
customSessionId?: string;
|
|
10
12
|
/** User text to insert into the conversation. */
|
|
11
13
|
text: string;
|
|
12
|
-
/** The type of message sent through the socket; for a User Input message, this must be `user_input`. */
|
|
13
|
-
type: "user_input";
|
|
14
14
|
}
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
* When provided, the output is an interruption.
|
|
6
6
|
*/
|
|
7
7
|
export interface UserInterruption {
|
|
8
|
+
/** The type of message sent through the socket; for a User Interruption message, this must be `user_interruption`. */
|
|
9
|
+
type: "user_interruption";
|
|
8
10
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
9
11
|
customSessionId?: string;
|
|
10
12
|
/** Unix timestamp of the detected user interruption. */
|
|
11
13
|
time: number;
|
|
12
|
-
/** The type of message sent through the socket; for a User Interruption message, this must be `user_interruption`. */
|
|
13
|
-
type: "user_interruption";
|
|
14
14
|
}
|
|
@@ -6,16 +6,16 @@ import * as Hume from "../../../index";
|
|
|
6
6
|
* When provided, the output is a user message.
|
|
7
7
|
*/
|
|
8
8
|
export interface UserMessage {
|
|
9
|
+
/** The type of message sent through the socket; for a User message, this must be `user_message`. */
|
|
10
|
+
type: "user_message";
|
|
9
11
|
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
10
12
|
customSessionId?: string;
|
|
11
|
-
/** Indicates if this message was constructed from a text input message. */
|
|
12
|
-
fromText: boolean;
|
|
13
13
|
/** Transcript of the message. */
|
|
14
14
|
message: Hume.empathicVoice.ChatMessage;
|
|
15
15
|
/** Inference model results. */
|
|
16
16
|
models: Hume.empathicVoice.Inference;
|
|
17
17
|
/** Start and End time of user message. */
|
|
18
18
|
time: Hume.empathicVoice.MillisecondInterval;
|
|
19
|
-
/**
|
|
20
|
-
|
|
19
|
+
/** Indicates if this message was constructed from a text input message. */
|
|
20
|
+
fromText: boolean;
|
|
21
21
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.VoiceNameEnum = void 0;
|
|
7
|
+
exports.VoiceNameEnum = {
|
|
8
|
+
Ito: "ITO",
|
|
9
|
+
Kora: "KORA",
|
|
10
|
+
Dacher: "DACHER",
|
|
11
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
/**
|
|
5
|
+
* When provided, the output is an error message.
|
|
6
|
+
*/
|
|
7
|
+
export interface WebSocketError {
|
|
8
|
+
/** The type of message sent through the socket; for a Web Socket Error message, this must be `error`. */
|
|
9
|
+
type: "error";
|
|
10
|
+
/** Used to manage conversational state, correlate frontend and backend data, and persist conversations across EVI sessions. */
|
|
11
|
+
customSessionId?: string;
|
|
12
|
+
/** Error code. */
|
|
13
|
+
code: string;
|
|
14
|
+
/** Error slug. */
|
|
15
|
+
slug: string;
|
|
16
|
+
/** Error message. */
|
|
17
|
+
message: string;
|
|
18
|
+
}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
export * from "./ReturnUserDefinedTool";
|
|
2
2
|
export * from "./ReturnPrompt";
|
|
3
|
+
export * from "./PostedCustomVoice";
|
|
4
|
+
export * from "./ReturnCustomVoice";
|
|
3
5
|
export * from "./PostedBuiltinTool";
|
|
4
6
|
export * from "./PostedEllmModel";
|
|
5
7
|
export * from "./PostedEventMessageSpec";
|
|
8
|
+
export * from "./PostedEventMessageSpecs";
|
|
6
9
|
export * from "./PostedLanguageModelModelProvider";
|
|
7
10
|
export * from "./PostedLanguageModel";
|
|
8
11
|
export * from "./PostedPromptSpec";
|
|
9
12
|
export * from "./PostedTimeoutSpec";
|
|
13
|
+
export * from "./PostedTimeoutSpecs";
|
|
10
14
|
export * from "./PostedUserDefinedToolSpec";
|
|
11
15
|
export * from "./PostedVoiceName";
|
|
12
16
|
export * from "./PostedVoice";
|
|
@@ -14,11 +18,16 @@ export * from "./ReturnBuiltinTool";
|
|
|
14
18
|
export * from "./ReturnConfig";
|
|
15
19
|
export * from "./ReturnEllmModel";
|
|
16
20
|
export * from "./ReturnEventMessageSpec";
|
|
21
|
+
export * from "./ReturnEventMessageSpecs";
|
|
17
22
|
export * from "./ReturnLanguageModel";
|
|
18
23
|
export * from "./ReturnTimeoutSpec";
|
|
24
|
+
export * from "./ReturnTimeoutSpecs";
|
|
19
25
|
export * from "./ReturnVoice";
|
|
26
|
+
export * from "./ReturnPrivacySettings";
|
|
27
|
+
export * from "./PostedCustomVoiceName";
|
|
20
28
|
export * from "./ReturnPagedUserDefinedTools";
|
|
21
29
|
export * from "./ReturnPagedPrompts";
|
|
30
|
+
export * from "./ReturnPagedCustomVoices";
|
|
22
31
|
export * from "./ReturnPagedConfigs";
|
|
23
32
|
export * from "./ReturnChat";
|
|
24
33
|
export * from "./ReturnConfigSpec";
|
|
@@ -31,35 +40,45 @@ export * from "./ReturnChatGroup";
|
|
|
31
40
|
export * from "./ReturnPagedChatGroups";
|
|
32
41
|
export * from "./ReturnChatGroupPagedChats";
|
|
33
42
|
export * from "./ReturnChatGroupPagedEvents";
|
|
34
|
-
export * from "./
|
|
43
|
+
export * from "./ReturnPurgeStats";
|
|
35
44
|
export * from "./AssistantInput";
|
|
36
|
-
export * from "./AssistantMessage";
|
|
37
45
|
export * from "./AudioConfiguration";
|
|
38
46
|
export * from "./AudioInput";
|
|
39
|
-
export * from "./AudioOutput";
|
|
40
47
|
export * from "./BuiltInTool";
|
|
41
48
|
export * from "./BuiltinToolConfig";
|
|
42
|
-
export * from "./ChatMessageToolResult";
|
|
43
|
-
export * from "./ChatMessage";
|
|
44
|
-
export * from "./ChatMetadata";
|
|
45
49
|
export * from "./Context";
|
|
46
50
|
export * from "./ContextType";
|
|
47
|
-
export * from "./EmotionScores";
|
|
48
51
|
export * from "./Encoding";
|
|
49
|
-
export * from "./Error_";
|
|
50
52
|
export * from "./ErrorLevel";
|
|
51
|
-
export * from "./Inference";
|
|
52
|
-
export * from "./MillisecondInterval";
|
|
53
53
|
export * from "./PauseAssistantMessage";
|
|
54
|
-
export * from "./ProsodyInference";
|
|
55
54
|
export * from "./ResumeAssistantMessage";
|
|
56
|
-
export * from "./Role";
|
|
57
55
|
export * from "./SessionSettings";
|
|
58
56
|
export * from "./Tool";
|
|
59
|
-
export * from "./ToolCallMessage";
|
|
60
57
|
export * from "./ToolErrorMessage";
|
|
61
58
|
export * from "./ToolResponseMessage";
|
|
62
59
|
export * from "./ToolType";
|
|
63
60
|
export * from "./UserInput";
|
|
61
|
+
export * from "./AssistantEnd";
|
|
62
|
+
export * from "./AssistantMessage";
|
|
63
|
+
export * from "./AudioOutput";
|
|
64
|
+
export * from "./ChatMessageToolResult";
|
|
65
|
+
export * from "./ChatMessage";
|
|
66
|
+
export * from "./ChatMetadata";
|
|
67
|
+
export * from "./EmotionScores";
|
|
68
|
+
export * from "./WebSocketError";
|
|
69
|
+
export * from "./Inference";
|
|
70
|
+
export * from "./MillisecondInterval";
|
|
71
|
+
export * from "./ProsodyInference";
|
|
72
|
+
export * from "./Role";
|
|
73
|
+
export * from "./ToolCallMessage";
|
|
64
74
|
export * from "./UserInterruption";
|
|
65
75
|
export * from "./UserMessage";
|
|
76
|
+
export * from "./TtsInput";
|
|
77
|
+
export * from "./TextInput";
|
|
78
|
+
export * from "./FunctionCallResponseInput";
|
|
79
|
+
export * from "./ExtendedVoiceArgs";
|
|
80
|
+
export * from "./HttpValidationError";
|
|
81
|
+
export * from "./ValidationErrorLocItem";
|
|
82
|
+
export * from "./ValidationError";
|
|
83
|
+
export * from "./VoiceArgs";
|
|
84
|
+
export * from "./VoiceNameEnum";
|
|
@@ -16,13 +16,17 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./ReturnUserDefinedTool"), exports);
|
|
18
18
|
__exportStar(require("./ReturnPrompt"), exports);
|
|
19
|
+
__exportStar(require("./PostedCustomVoice"), exports);
|
|
20
|
+
__exportStar(require("./ReturnCustomVoice"), exports);
|
|
19
21
|
__exportStar(require("./PostedBuiltinTool"), exports);
|
|
20
22
|
__exportStar(require("./PostedEllmModel"), exports);
|
|
21
23
|
__exportStar(require("./PostedEventMessageSpec"), exports);
|
|
24
|
+
__exportStar(require("./PostedEventMessageSpecs"), exports);
|
|
22
25
|
__exportStar(require("./PostedLanguageModelModelProvider"), exports);
|
|
23
26
|
__exportStar(require("./PostedLanguageModel"), exports);
|
|
24
27
|
__exportStar(require("./PostedPromptSpec"), exports);
|
|
25
28
|
__exportStar(require("./PostedTimeoutSpec"), exports);
|
|
29
|
+
__exportStar(require("./PostedTimeoutSpecs"), exports);
|
|
26
30
|
__exportStar(require("./PostedUserDefinedToolSpec"), exports);
|
|
27
31
|
__exportStar(require("./PostedVoiceName"), exports);
|
|
28
32
|
__exportStar(require("./PostedVoice"), exports);
|
|
@@ -30,11 +34,16 @@ __exportStar(require("./ReturnBuiltinTool"), exports);
|
|
|
30
34
|
__exportStar(require("./ReturnConfig"), exports);
|
|
31
35
|
__exportStar(require("./ReturnEllmModel"), exports);
|
|
32
36
|
__exportStar(require("./ReturnEventMessageSpec"), exports);
|
|
37
|
+
__exportStar(require("./ReturnEventMessageSpecs"), exports);
|
|
33
38
|
__exportStar(require("./ReturnLanguageModel"), exports);
|
|
34
39
|
__exportStar(require("./ReturnTimeoutSpec"), exports);
|
|
40
|
+
__exportStar(require("./ReturnTimeoutSpecs"), exports);
|
|
35
41
|
__exportStar(require("./ReturnVoice"), exports);
|
|
42
|
+
__exportStar(require("./ReturnPrivacySettings"), exports);
|
|
43
|
+
__exportStar(require("./PostedCustomVoiceName"), exports);
|
|
36
44
|
__exportStar(require("./ReturnPagedUserDefinedTools"), exports);
|
|
37
45
|
__exportStar(require("./ReturnPagedPrompts"), exports);
|
|
46
|
+
__exportStar(require("./ReturnPagedCustomVoices"), exports);
|
|
38
47
|
__exportStar(require("./ReturnPagedConfigs"), exports);
|
|
39
48
|
__exportStar(require("./ReturnChat"), exports);
|
|
40
49
|
__exportStar(require("./ReturnConfigSpec"), exports);
|
|
@@ -47,35 +56,45 @@ __exportStar(require("./ReturnChatGroup"), exports);
|
|
|
47
56
|
__exportStar(require("./ReturnPagedChatGroups"), exports);
|
|
48
57
|
__exportStar(require("./ReturnChatGroupPagedChats"), exports);
|
|
49
58
|
__exportStar(require("./ReturnChatGroupPagedEvents"), exports);
|
|
50
|
-
__exportStar(require("./
|
|
59
|
+
__exportStar(require("./ReturnPurgeStats"), exports);
|
|
51
60
|
__exportStar(require("./AssistantInput"), exports);
|
|
52
|
-
__exportStar(require("./AssistantMessage"), exports);
|
|
53
61
|
__exportStar(require("./AudioConfiguration"), exports);
|
|
54
62
|
__exportStar(require("./AudioInput"), exports);
|
|
55
|
-
__exportStar(require("./AudioOutput"), exports);
|
|
56
63
|
__exportStar(require("./BuiltInTool"), exports);
|
|
57
64
|
__exportStar(require("./BuiltinToolConfig"), exports);
|
|
58
|
-
__exportStar(require("./ChatMessageToolResult"), exports);
|
|
59
|
-
__exportStar(require("./ChatMessage"), exports);
|
|
60
|
-
__exportStar(require("./ChatMetadata"), exports);
|
|
61
65
|
__exportStar(require("./Context"), exports);
|
|
62
66
|
__exportStar(require("./ContextType"), exports);
|
|
63
|
-
__exportStar(require("./EmotionScores"), exports);
|
|
64
67
|
__exportStar(require("./Encoding"), exports);
|
|
65
|
-
__exportStar(require("./Error_"), exports);
|
|
66
68
|
__exportStar(require("./ErrorLevel"), exports);
|
|
67
|
-
__exportStar(require("./Inference"), exports);
|
|
68
|
-
__exportStar(require("./MillisecondInterval"), exports);
|
|
69
69
|
__exportStar(require("./PauseAssistantMessage"), exports);
|
|
70
|
-
__exportStar(require("./ProsodyInference"), exports);
|
|
71
70
|
__exportStar(require("./ResumeAssistantMessage"), exports);
|
|
72
|
-
__exportStar(require("./Role"), exports);
|
|
73
71
|
__exportStar(require("./SessionSettings"), exports);
|
|
74
72
|
__exportStar(require("./Tool"), exports);
|
|
75
|
-
__exportStar(require("./ToolCallMessage"), exports);
|
|
76
73
|
__exportStar(require("./ToolErrorMessage"), exports);
|
|
77
74
|
__exportStar(require("./ToolResponseMessage"), exports);
|
|
78
75
|
__exportStar(require("./ToolType"), exports);
|
|
79
76
|
__exportStar(require("./UserInput"), exports);
|
|
77
|
+
__exportStar(require("./AssistantEnd"), exports);
|
|
78
|
+
__exportStar(require("./AssistantMessage"), exports);
|
|
79
|
+
__exportStar(require("./AudioOutput"), exports);
|
|
80
|
+
__exportStar(require("./ChatMessageToolResult"), exports);
|
|
81
|
+
__exportStar(require("./ChatMessage"), exports);
|
|
82
|
+
__exportStar(require("./ChatMetadata"), exports);
|
|
83
|
+
__exportStar(require("./EmotionScores"), exports);
|
|
84
|
+
__exportStar(require("./WebSocketError"), exports);
|
|
85
|
+
__exportStar(require("./Inference"), exports);
|
|
86
|
+
__exportStar(require("./MillisecondInterval"), exports);
|
|
87
|
+
__exportStar(require("./ProsodyInference"), exports);
|
|
88
|
+
__exportStar(require("./Role"), exports);
|
|
89
|
+
__exportStar(require("./ToolCallMessage"), exports);
|
|
80
90
|
__exportStar(require("./UserInterruption"), exports);
|
|
81
91
|
__exportStar(require("./UserMessage"), exports);
|
|
92
|
+
__exportStar(require("./TtsInput"), exports);
|
|
93
|
+
__exportStar(require("./TextInput"), exports);
|
|
94
|
+
__exportStar(require("./FunctionCallResponseInput"), exports);
|
|
95
|
+
__exportStar(require("./ExtendedVoiceArgs"), exports);
|
|
96
|
+
__exportStar(require("./HttpValidationError"), exports);
|
|
97
|
+
__exportStar(require("./ValidationErrorLocItem"), exports);
|
|
98
|
+
__exportStar(require("./ValidationError"), exports);
|
|
99
|
+
__exportStar(require("./VoiceArgs"), exports);
|
|
100
|
+
__exportStar(require("./VoiceNameEnum"), exports);
|