hume 0.7.2 → 0.8.0
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 +554 -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 +0 -3
- package/Client.js +4 -9
- package/api/resources/empathicVoice/client/Client.d.ts +3 -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 +177 -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.js +2 -4
- package/api/resources/empathicVoice/resources/chats/client/Client.js +2 -4
- package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -15
- 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.js +9 -15
- package/api/resources/empathicVoice/resources/tools/client/Client.js +9 -15
- 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/Features.d.ts +21 -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 +11 -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 +11 -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 +33 -13
- package/api/resources/empathicVoice/types/index.js +33 -13
- package/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -11
- package/api/resources/index.d.ts +0 -1
- package/api/resources/index.js +1 -2
- 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 +0 -3
- package/dist/Client.js +4 -9
- package/dist/api/resources/empathicVoice/client/Client.d.ts +3 -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 +177 -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.js +2 -4
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +2 -4
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -15
- 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.js +9 -15
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +9 -15
- 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/Features.d.ts +21 -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 +11 -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 +11 -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 +33 -13
- package/dist/api/resources/empathicVoice/types/index.js +33 -13
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -11
- package/dist/api/resources/index.d.ts +0 -1
- package/dist/api/resources/index.js +1 -2
- 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/Features.d.ts +19 -0
- package/dist/serialization/resources/empathicVoice/types/Features.js +40 -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 +8 -7
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.js +8 -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 +18 -0
- package/dist/serialization/resources/empathicVoice/types/VoiceArgs.js +39 -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 +33 -13
- package/dist/serialization/resources/empathicVoice/types/index.js +33 -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/Features.d.ts +19 -0
- package/serialization/resources/empathicVoice/types/Features.js +40 -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 +8 -7
- package/serialization/resources/empathicVoice/types/SessionSettings.js +8 -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 +18 -0
- package/serialization/resources/empathicVoice/types/VoiceArgs.js +39 -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 +33 -13
- package/serialization/resources/empathicVoice/types/index.js +33 -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/Error_.d.ts +0 -9
- 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/Features.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetFilesRequest.js → empathicVoice/types/FunctionCallResponseInput.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetVersionFilesRequest.js → empathicVoice/types/HttpValidationError.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetVersionsRequest.js → empathicVoice/types/PostedCustomVoice.js} +0 -0
- /package/api/resources/{customModels/resources/datasets/client/requests/DatasetsListDatasetsRequest.js → empathicVoice/types/PostedCustomVoiceName.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesListFilesRequest.js → empathicVoice/types/PostedEventMessageSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesUpdateFileNameRequest.js → empathicVoice/types/PostedTimeoutSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/files/client/requests/FilesUploadFileRequest.js → empathicVoice/types/ReturnCustomVoice.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsGetModelVersionRequest.js → empathicVoice/types/ReturnEventMessageSpecs.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsListModelVersionsRequest.js → empathicVoice/types/ReturnPagedCustomVoices.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsListModelsRequest.js → empathicVoice/types/ReturnPrivacySettings.js} +0 -0
- /package/api/resources/{customModels/resources/models/client/requests/ModelsUpdateModelNameRequest.js → empathicVoice/types/ReturnPurgeStats.js} +0 -0
- /package/api/resources/{customModels/types/Alternative.js → empathicVoice/types/ReturnTimeoutSpecs.js} +0 -0
- /package/api/resources/{customModels/types/AttributeFilter.js → empathicVoice/types/TextInput.js} +0 -0
- /package/api/resources/{customModels/types/AuthorizedFile.js → empathicVoice/types/TtsInput.js} +0 -0
- /package/api/resources/{customModels/types/BoundingBox.js → empathicVoice/types/ValidationError.js} +0 -0
- /package/api/resources/{customModels/types/BurstPrediction.js → empathicVoice/types/ValidationErrorLocItem.js} +0 -0
- /package/api/resources/{customModels/types/Classification.js → empathicVoice/types/VoiceArgs.js} +0 -0
- /package/api/resources/{customModels/types/CompletedEmbeddingGeneration.js → empathicVoice/types/WebSocketError.js} +0 -0
- /package/{api/resources/customModels/types/CompletedInference.js → dist/api/resources/empathicVoice/types/ExtendedVoiceArgs.js} +0 -0
- /package/{api/resources/customModels/types/CompletedTlInference.js → dist/api/resources/empathicVoice/types/Features.js} +0 -0
- /package/{api/resources/customModels/types/CompletedTraining.js → dist/api/resources/empathicVoice/types/FunctionCallResponseInput.js} +0 -0
- /package/{api/resources/customModels/types/CustomModel.js → dist/api/resources/empathicVoice/types/HttpValidationError.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelId.js → dist/api/resources/empathicVoice/types/PostedCustomVoice.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelPrediction.js → dist/api/resources/empathicVoice/types/PostedCustomVoiceName.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelRequest.js → dist/api/resources/empathicVoice/types/PostedEventMessageSpecs.js} +0 -0
- /package/{api/resources/customModels/types/CustomModelVersionId.js → dist/api/resources/empathicVoice/types/PostedTimeoutSpecs.js} +0 -0
- /package/{api/resources/customModels/types/Dataset.js → dist/api/resources/empathicVoice/types/ReturnCustomVoice.js} +0 -0
- /package/{api/resources/customModels/types/DatasetId.js → dist/api/resources/empathicVoice/types/ReturnEventMessageSpecs.js} +0 -0
- /package/{api/resources/customModels/types/DatasetLabels.js → dist/api/resources/empathicVoice/types/ReturnPagedCustomVoices.js} +0 -0
- /package/{api/resources/customModels/types/DatasetLabelsFileUriInput.js → dist/api/resources/empathicVoice/types/ReturnPrivacySettings.js} +0 -0
- /package/{api/resources/customModels/types/DatasetPage.js → dist/api/resources/empathicVoice/types/ReturnPurgeStats.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersion.js → dist/api/resources/empathicVoice/types/ReturnTimeoutSpecs.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersionId.js → dist/api/resources/empathicVoice/types/TextInput.js} +0 -0
- /package/{api/resources/customModels/types/DatasetVersionPage.js → dist/api/resources/empathicVoice/types/TtsInput.js} +0 -0
- /package/{api/resources/customModels/types/DescriptionsScore.js → dist/api/resources/empathicVoice/types/ValidationError.js} +0 -0
- /package/{api/resources/customModels/types/EmbeddingGenerationBaseRequest.js → dist/api/resources/empathicVoice/types/ValidationErrorLocItem.js} +0 -0
- /package/{api/resources/customModels/types/EmotionScore.js → dist/api/resources/empathicVoice/types/VoiceArgs.js} +0 -0
- /package/{api/resources/customModels/types/Error_.js → dist/api/resources/empathicVoice/types/WebSocketError.js} +0 -0
|
@@ -55,7 +55,7 @@ types:
|
|
|
55
55
|
version_type:
|
|
56
56
|
type: string
|
|
57
57
|
docs: >-
|
|
58
|
-
Indicates whether this
|
|
58
|
+
Indicates whether this prompt is using a fixed version number or
|
|
59
59
|
auto-updating to the latest version. Values from the VersionType enum.
|
|
60
60
|
version_description:
|
|
61
61
|
type: optional<string>
|
|
@@ -72,6 +72,64 @@ types:
|
|
|
72
72
|
text:
|
|
73
73
|
type: string
|
|
74
74
|
docs: Text used for this version of the Prompt.
|
|
75
|
+
PostedCustomVoice:
|
|
76
|
+
docs: A custom voice specifications posted to the server
|
|
77
|
+
properties:
|
|
78
|
+
name:
|
|
79
|
+
type: string
|
|
80
|
+
docs: >-
|
|
81
|
+
String with the name of the voice to use. Maximum length of 75
|
|
82
|
+
characters. Will be converted to all-uppercase.
|
|
83
|
+
base_voice:
|
|
84
|
+
type: string
|
|
85
|
+
docs: The voice the custom voice is based off of.
|
|
86
|
+
speech_rate_multiplier:
|
|
87
|
+
type: optional<double>
|
|
88
|
+
docs: The speech rate multiplier for this custom voice.
|
|
89
|
+
parameter_model:
|
|
90
|
+
type: string
|
|
91
|
+
docs: >-
|
|
92
|
+
The name of the parameter model used to define which attributes are
|
|
93
|
+
used by `parameters`.
|
|
94
|
+
parameters:
|
|
95
|
+
type: optional<map<string, optional<double>>>
|
|
96
|
+
docs: Voice specification for a Config.
|
|
97
|
+
ReturnCustomVoice:
|
|
98
|
+
docs: A custom voice specification returned from the server
|
|
99
|
+
properties:
|
|
100
|
+
id:
|
|
101
|
+
type: string
|
|
102
|
+
docs: Identifier for a Custom Voice. Formatted as a UUID.
|
|
103
|
+
version:
|
|
104
|
+
type: integer
|
|
105
|
+
docs: >-
|
|
106
|
+
Version number for a Custom Voice. Version numbers should be integers.
|
|
107
|
+
The combination of custom_voice_id and version number is unique.
|
|
108
|
+
name:
|
|
109
|
+
type: string
|
|
110
|
+
docs: >-
|
|
111
|
+
String with the name of the voice to use. Maximum length of 75
|
|
112
|
+
characters. Will be converted to all-uppercase.
|
|
113
|
+
created_on:
|
|
114
|
+
type: integer
|
|
115
|
+
docs: The timestamp when the first version of this prompt was created.
|
|
116
|
+
modified_on:
|
|
117
|
+
type: integer
|
|
118
|
+
docs: The timestamp when this version of the prompt was created.
|
|
119
|
+
base_voice:
|
|
120
|
+
type: string
|
|
121
|
+
docs: The voice the custom voice is based off of.
|
|
122
|
+
speech_rate_multiplier:
|
|
123
|
+
type: optional<double>
|
|
124
|
+
docs: The speech rate multiplier for this custom voice.
|
|
125
|
+
parameter_model:
|
|
126
|
+
type: string
|
|
127
|
+
docs: >-
|
|
128
|
+
The name of the parameter model used to define which attributes are
|
|
129
|
+
used by `parameters`.
|
|
130
|
+
parameters:
|
|
131
|
+
docs: Voice specification for a Config.
|
|
132
|
+
type: map<string, double>
|
|
75
133
|
PostedBuiltinTool:
|
|
76
134
|
docs: A configuration of a built-in tool to be posted to the server
|
|
77
135
|
properties:
|
|
@@ -101,6 +159,15 @@ types:
|
|
|
101
159
|
Optional text that will be used as a verbatim event message. If the
|
|
102
160
|
text is null and the event message is enabled, the system will
|
|
103
161
|
generate a message based using the language model.
|
|
162
|
+
PostedEventMessageSpecs:
|
|
163
|
+
docs: Collection of event_message specs to be posted to the server
|
|
164
|
+
properties:
|
|
165
|
+
on_new_chat:
|
|
166
|
+
type: optional<PostedEventMessageSpec>
|
|
167
|
+
docs: >-
|
|
168
|
+
Set `enabled` to have the LLM generate an initial message using the
|
|
169
|
+
system prompt. Set `text` to a string to use verbatim as the initial
|
|
170
|
+
message.
|
|
104
171
|
PostedLanguageModelModelProvider:
|
|
105
172
|
enum:
|
|
106
173
|
- OPEN_AI
|
|
@@ -108,6 +175,7 @@ types:
|
|
|
108
175
|
- ANTHROPIC
|
|
109
176
|
- FIREWORKS
|
|
110
177
|
- GROQ
|
|
178
|
+
- GOOGLE
|
|
111
179
|
docs: The provider of this model. Based on the enum modelProvider.
|
|
112
180
|
PostedLanguageModel:
|
|
113
181
|
docs: A LanguageModel to be posted to the server
|
|
@@ -141,6 +209,11 @@ types:
|
|
|
141
209
|
duration_secs:
|
|
142
210
|
type: optional<integer>
|
|
143
211
|
docs: Duration in seconds for the timeout.
|
|
212
|
+
PostedTimeoutSpecs:
|
|
213
|
+
docs: Collection of timeout specs to be posted to the server
|
|
214
|
+
properties:
|
|
215
|
+
inactivity: optional<PostedTimeoutSpec>
|
|
216
|
+
max_duration: optional<PostedTimeoutSpec>
|
|
144
217
|
PostedUserDefinedToolSpec:
|
|
145
218
|
docs: A specific tool identifier to be posted to the server
|
|
146
219
|
properties:
|
|
@@ -157,16 +230,20 @@ types:
|
|
|
157
230
|
- ITO
|
|
158
231
|
- DACHER
|
|
159
232
|
- KORA
|
|
160
|
-
docs:
|
|
233
|
+
docs: >-
|
|
234
|
+
String with the name of the voice to use. Maximum length of 75 characters.
|
|
235
|
+
Will be converted to all-uppercase.
|
|
161
236
|
PostedVoice:
|
|
162
237
|
docs: A Voice specification posted to the server
|
|
163
238
|
properties:
|
|
164
239
|
provider:
|
|
165
|
-
type:
|
|
240
|
+
type: literal<"HUME_AI">
|
|
166
241
|
docs: The provider of the voice to use. Based on the enum VoiceProvider.
|
|
167
242
|
name:
|
|
168
|
-
type: PostedVoiceName
|
|
169
|
-
docs:
|
|
243
|
+
type: optional<PostedVoiceName>
|
|
244
|
+
docs: >-
|
|
245
|
+
String with the name of the voice to use. Maximum length of 75
|
|
246
|
+
characters. Will be converted to all-uppercase.
|
|
170
247
|
ReturnBuiltinTool:
|
|
171
248
|
docs: A specific builtin tool version returned from the server
|
|
172
249
|
properties:
|
|
@@ -212,12 +289,7 @@ types:
|
|
|
212
289
|
builtin_tools:
|
|
213
290
|
type: optional<list<optional<ReturnBuiltinTool>>>
|
|
214
291
|
docs: List of built-in tools associated with this config
|
|
215
|
-
event_messages:
|
|
216
|
-
type: optional<map<string, optional<ReturnEventMessageSpec>>>
|
|
217
|
-
docs: Map of event messages associated with this config.
|
|
218
|
-
timeouts:
|
|
219
|
-
type: optional<map<string, optional<ReturnTimeoutSpec>>>
|
|
220
|
-
docs: Map of timeouts associated with this config.
|
|
292
|
+
event_messages: optional<ReturnEventMessageSpecs>
|
|
221
293
|
ReturnEllmModel:
|
|
222
294
|
docs: A specific eLLM Model configuration
|
|
223
295
|
properties:
|
|
@@ -238,6 +310,15 @@ types:
|
|
|
238
310
|
Optional text that will be used as a verbatim event message. If the
|
|
239
311
|
text is null and the event message is enabled, the system will
|
|
240
312
|
generate a message based using the language model.
|
|
313
|
+
ReturnEventMessageSpecs:
|
|
314
|
+
docs: Collection of event_message specs to be returned from the server
|
|
315
|
+
properties:
|
|
316
|
+
on_new_chat:
|
|
317
|
+
type: optional<ReturnEventMessageSpec>
|
|
318
|
+
docs: >-
|
|
319
|
+
`enabled` causes the LLM to generate an initial message using the
|
|
320
|
+
system prompt. `text` is the string to use verbatim as the initial
|
|
321
|
+
message.
|
|
241
322
|
ReturnLanguageModel:
|
|
242
323
|
docs: A specific LanguageModel
|
|
243
324
|
properties:
|
|
@@ -259,15 +340,35 @@ types:
|
|
|
259
340
|
duration_secs:
|
|
260
341
|
type: optional<integer>
|
|
261
342
|
docs: Duration in seconds for the timeout.
|
|
343
|
+
ReturnTimeoutSpecs:
|
|
344
|
+
docs: Collection of timeout specs to be returned from the server
|
|
345
|
+
properties:
|
|
346
|
+
inactivity: ReturnTimeoutSpec
|
|
347
|
+
max_duration: ReturnTimeoutSpec
|
|
262
348
|
ReturnVoice:
|
|
263
349
|
docs: A specific voice specification
|
|
264
350
|
properties:
|
|
265
351
|
provider:
|
|
266
352
|
type: string
|
|
267
353
|
docs: The provider of the voice to use. Based on the enum VoiceProvider.
|
|
354
|
+
name:
|
|
355
|
+
type: optional<string>
|
|
356
|
+
docs: >-
|
|
357
|
+
String with the name of the voice to use. Maximum length of 75
|
|
358
|
+
characters. Will be converted to all-uppercase.
|
|
359
|
+
ReturnPrivacySettings:
|
|
360
|
+
properties:
|
|
361
|
+
id: optional<string>
|
|
362
|
+
do_not_retain_data: optional<boolean>
|
|
363
|
+
do_not_use_for_training: optional<boolean>
|
|
364
|
+
PostedCustomVoiceName:
|
|
365
|
+
docs: A custom voice name change to be posted to the server
|
|
366
|
+
properties:
|
|
268
367
|
name:
|
|
269
368
|
type: string
|
|
270
|
-
docs:
|
|
369
|
+
docs: >-
|
|
370
|
+
String with the name of the voice to use. Maximum length of 75
|
|
371
|
+
characters. Will be converted to all-uppercase.
|
|
271
372
|
ReturnPagedUserDefinedTools:
|
|
272
373
|
docs: A paginated list of user defined tool versions returned from the server
|
|
273
374
|
properties:
|
|
@@ -298,6 +399,23 @@ types:
|
|
|
298
399
|
prompts_page:
|
|
299
400
|
docs: List of prompts returned for the specified page number and page size.
|
|
300
401
|
type: list<optional<ReturnPrompt>>
|
|
402
|
+
ReturnPagedCustomVoices:
|
|
403
|
+
docs: A paginated list of custom voices returned from the server
|
|
404
|
+
properties:
|
|
405
|
+
page_number:
|
|
406
|
+
type: integer
|
|
407
|
+
docs: The page number of the returned results.
|
|
408
|
+
page_size:
|
|
409
|
+
type: integer
|
|
410
|
+
docs: The number of results returned per page.
|
|
411
|
+
total_pages:
|
|
412
|
+
type: integer
|
|
413
|
+
docs: The total number of pages in the collection
|
|
414
|
+
custom_voices_page:
|
|
415
|
+
docs: >-
|
|
416
|
+
List of custom voices returned for the specified page number and page
|
|
417
|
+
size.
|
|
418
|
+
type: list<ReturnCustomVoice>
|
|
301
419
|
ReturnPagedConfigs:
|
|
302
420
|
docs: A paginated list of config versions returned from the server
|
|
303
421
|
properties:
|
|
@@ -609,92 +727,50 @@ types:
|
|
|
609
727
|
List of chat_events returned for the specified page number and page
|
|
610
728
|
size.
|
|
611
729
|
type: list<ReturnChatEvent>
|
|
612
|
-
|
|
613
|
-
docs: When provided, the output is an assistant end message.
|
|
730
|
+
ReturnPurgeStats:
|
|
614
731
|
properties:
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
docs: >-
|
|
623
|
-
The type of message sent through the socket; for an Assistant End
|
|
624
|
-
message, this must be `assistant_end`.
|
|
732
|
+
id: optional<string>
|
|
733
|
+
num_chats: optional<integer>
|
|
734
|
+
num_chat_events: optional<integer>
|
|
735
|
+
num_configs: optional<integer>
|
|
736
|
+
num_prompts: optional<integer>
|
|
737
|
+
num_tools: optional<integer>
|
|
738
|
+
num_voices: optional<integer>
|
|
625
739
|
AssistantInput:
|
|
626
740
|
docs: When provided, the input is spoken by EVI.
|
|
627
741
|
properties:
|
|
628
|
-
custom_session_id:
|
|
629
|
-
type: optional<string>
|
|
630
|
-
docs: >-
|
|
631
|
-
Used to manage conversational state, correlate frontend and backend
|
|
632
|
-
data, and persist conversations across EVI sessions.
|
|
633
|
-
text:
|
|
634
|
-
type: string
|
|
635
|
-
docs: Text to be synthesized.
|
|
636
742
|
type:
|
|
637
743
|
type: literal<"assistant_input">
|
|
638
744
|
docs: >-
|
|
639
745
|
The type of message sent through the socket; for an Assistant Input
|
|
640
746
|
message, this must be `assistant_input`.
|
|
641
|
-
AssistantMessage:
|
|
642
|
-
docs: When provided, the output is an assistant message.
|
|
643
|
-
properties:
|
|
644
747
|
custom_session_id:
|
|
645
748
|
type: optional<string>
|
|
646
749
|
docs: >-
|
|
647
750
|
Used to manage conversational state, correlate frontend and backend
|
|
648
751
|
data, and persist conversations across EVI sessions.
|
|
649
|
-
|
|
650
|
-
type:
|
|
651
|
-
docs:
|
|
652
|
-
id:
|
|
653
|
-
type: optional<string>
|
|
654
|
-
docs: ID of the assistant message.
|
|
655
|
-
message:
|
|
656
|
-
type: ChatMessage
|
|
657
|
-
docs: Transcript of the message.
|
|
658
|
-
models:
|
|
659
|
-
type: Inference
|
|
660
|
-
docs: Inference model results.
|
|
661
|
-
type:
|
|
662
|
-
type: literal<"assistant_message">
|
|
663
|
-
docs: >-
|
|
664
|
-
The type of message sent through the socket; for an Assistant Message,
|
|
665
|
-
this must be `assistant_message`.
|
|
752
|
+
text:
|
|
753
|
+
type: string
|
|
754
|
+
docs: Text to be synthesized.
|
|
666
755
|
AudioConfiguration:
|
|
667
756
|
properties:
|
|
668
|
-
channels:
|
|
669
|
-
type: integer
|
|
670
|
-
docs: Number of channels.
|
|
671
757
|
encoding:
|
|
672
758
|
type: Encoding
|
|
673
759
|
docs: Audio encoding.
|
|
760
|
+
channels:
|
|
761
|
+
type: integer
|
|
762
|
+
docs: Number of channels.
|
|
674
763
|
sample_rate:
|
|
675
764
|
type: integer
|
|
676
765
|
docs: Audio sample rate.
|
|
677
766
|
AudioInput:
|
|
678
767
|
docs: When provided, the input is audio.
|
|
679
768
|
properties:
|
|
680
|
-
custom_session_id:
|
|
681
|
-
type: optional<string>
|
|
682
|
-
docs: >-
|
|
683
|
-
Used to manage conversational state, correlate frontend and backend
|
|
684
|
-
data, and persist conversations across EVI sessions.
|
|
685
|
-
data:
|
|
686
|
-
type: string
|
|
687
|
-
docs: Base64 encoded audio input.
|
|
688
|
-
validation:
|
|
689
|
-
format: base64
|
|
690
769
|
type:
|
|
691
770
|
type: literal<"audio_input">
|
|
692
771
|
docs: >-
|
|
693
772
|
The type of message sent through the socket; for an Audio Input
|
|
694
773
|
message, this must be `audio_input`.
|
|
695
|
-
AudioOutput:
|
|
696
|
-
docs: When provided, the output is audio.
|
|
697
|
-
properties:
|
|
698
774
|
custom_session_id:
|
|
699
775
|
type: optional<string>
|
|
700
776
|
docs: >-
|
|
@@ -702,236 +778,104 @@ types:
|
|
|
702
778
|
data, and persist conversations across EVI sessions.
|
|
703
779
|
data:
|
|
704
780
|
type: string
|
|
705
|
-
docs: Base64 encoded audio
|
|
781
|
+
docs: Base64 encoded audio input.
|
|
706
782
|
validation:
|
|
707
783
|
format: base64
|
|
708
|
-
id:
|
|
709
|
-
type: string
|
|
710
|
-
docs: ID of the audio output.
|
|
711
|
-
type:
|
|
712
|
-
type: literal<"audio_output">
|
|
713
|
-
docs: >-
|
|
714
|
-
The type of message sent through the socket; for an Audio Output
|
|
715
|
-
message, this must be `audio_output`.
|
|
716
784
|
BuiltInTool: literal<"web_search">
|
|
717
785
|
BuiltinToolConfig:
|
|
718
786
|
properties:
|
|
719
|
-
fallback_content: optional<string>
|
|
720
787
|
name: BuiltInTool
|
|
721
|
-
|
|
722
|
-
discriminated: false
|
|
723
|
-
docs: Function call response from client.
|
|
724
|
-
union:
|
|
725
|
-
- ToolResponseMessage
|
|
726
|
-
- ToolErrorMessage
|
|
727
|
-
ChatMessage:
|
|
728
|
-
properties:
|
|
729
|
-
content:
|
|
730
|
-
type: optional<string>
|
|
731
|
-
docs: Transcript of the message.
|
|
732
|
-
role:
|
|
733
|
-
type: Role
|
|
734
|
-
docs: Role of who is providing the message.
|
|
735
|
-
tool_call:
|
|
736
|
-
type: optional<ToolCallMessage>
|
|
737
|
-
docs: Function call name and arguments.
|
|
738
|
-
tool_result:
|
|
739
|
-
type: optional<ChatMessageToolResult>
|
|
740
|
-
docs: Function call response from client.
|
|
741
|
-
ChatMetadata:
|
|
742
|
-
docs: When provided, the output is a chat metadata message.
|
|
743
|
-
properties:
|
|
744
|
-
chat_group_id:
|
|
745
|
-
type: string
|
|
746
|
-
docs: ID of the chat group. Used to resume a chat.
|
|
747
|
-
chat_id:
|
|
748
|
-
type: string
|
|
749
|
-
docs: ID of the chat.
|
|
750
|
-
custom_session_id:
|
|
751
|
-
type: optional<string>
|
|
752
|
-
docs: >-
|
|
753
|
-
Used to manage conversational state, correlate frontend and backend
|
|
754
|
-
data, and persist conversations across EVI sessions.
|
|
755
|
-
type:
|
|
756
|
-
type: literal<"chat_metadata">
|
|
757
|
-
docs: >-
|
|
758
|
-
The type of message sent through the socket; for a Chat Metadata
|
|
759
|
-
message, this must be `chat_metadata`.
|
|
788
|
+
fallback_content: optional<string>
|
|
760
789
|
Context:
|
|
761
790
|
properties:
|
|
762
|
-
text:
|
|
763
|
-
type: string
|
|
764
|
-
docs: User context to inject.
|
|
765
791
|
type:
|
|
766
792
|
type: optional<ContextType>
|
|
767
793
|
docs: The persistence level of the injected context.
|
|
794
|
+
text:
|
|
795
|
+
type: string
|
|
796
|
+
docs: User context to inject.
|
|
768
797
|
ContextType:
|
|
769
798
|
enum:
|
|
770
799
|
- editable
|
|
771
800
|
- persistent
|
|
772
801
|
- temporary
|
|
773
|
-
EmotionScores:
|
|
774
|
-
properties:
|
|
775
|
-
Admiration: double
|
|
776
|
-
Adoration: double
|
|
777
|
-
Aesthetic Appreciation: double
|
|
778
|
-
Amusement: double
|
|
779
|
-
Anger: double
|
|
780
|
-
Anxiety: double
|
|
781
|
-
Awe: double
|
|
782
|
-
Awkwardness: double
|
|
783
|
-
Boredom: double
|
|
784
|
-
Calmness: double
|
|
785
|
-
Concentration: double
|
|
786
|
-
Confusion: double
|
|
787
|
-
Contemplation: double
|
|
788
|
-
Contempt: double
|
|
789
|
-
Contentment: double
|
|
790
|
-
Craving: double
|
|
791
|
-
Desire: double
|
|
792
|
-
Determination: double
|
|
793
|
-
Disappointment: double
|
|
794
|
-
Disgust: double
|
|
795
|
-
Distress: double
|
|
796
|
-
Doubt: double
|
|
797
|
-
Ecstasy: double
|
|
798
|
-
Embarrassment: double
|
|
799
|
-
Empathic Pain: double
|
|
800
|
-
Entrancement: double
|
|
801
|
-
Envy: double
|
|
802
|
-
Excitement: double
|
|
803
|
-
Fear: double
|
|
804
|
-
Guilt: double
|
|
805
|
-
Horror: double
|
|
806
|
-
Interest: double
|
|
807
|
-
Joy: double
|
|
808
|
-
Love: double
|
|
809
|
-
Nostalgia: double
|
|
810
|
-
Pain: double
|
|
811
|
-
Pride: double
|
|
812
|
-
Realization: double
|
|
813
|
-
Relief: double
|
|
814
|
-
Romance: double
|
|
815
|
-
Sadness: double
|
|
816
|
-
Satisfaction: double
|
|
817
|
-
Shame: double
|
|
818
|
-
Surprise (negative): double
|
|
819
|
-
Surprise (positive): double
|
|
820
|
-
Sympathy: double
|
|
821
|
-
Tiredness: double
|
|
822
|
-
Triumph: double
|
|
823
802
|
Encoding: literal<"linear16">
|
|
824
|
-
|
|
825
|
-
|
|
803
|
+
ErrorLevel: literal<"warn">
|
|
804
|
+
PauseAssistantMessage:
|
|
805
|
+
docs: >-
|
|
806
|
+
Pause responses from EVI. Chat history is still saved and sent after
|
|
807
|
+
resuming.
|
|
826
808
|
properties:
|
|
827
|
-
|
|
828
|
-
type:
|
|
829
|
-
docs:
|
|
809
|
+
type:
|
|
810
|
+
type: literal<"pause_assistant_message">
|
|
811
|
+
docs: >-
|
|
812
|
+
The type of message sent through the socket; for a Pause Assistant
|
|
813
|
+
message, this must be `pause_assistant_message`.
|
|
830
814
|
custom_session_id:
|
|
831
815
|
type: optional<string>
|
|
832
816
|
docs: >-
|
|
833
817
|
Used to manage conversational state, correlate frontend and backend
|
|
834
818
|
data, and persist conversations across EVI sessions.
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
docs: Error slug.
|
|
819
|
+
ResumeAssistantMessage:
|
|
820
|
+
docs: >-
|
|
821
|
+
Resume responses from EVI. Chat history sent while paused will now be
|
|
822
|
+
sent.
|
|
823
|
+
properties:
|
|
841
824
|
type:
|
|
842
|
-
type: literal<"
|
|
825
|
+
type: literal<"resume_assistant_message">
|
|
843
826
|
docs: >-
|
|
844
|
-
The type of message sent through the socket; for a
|
|
845
|
-
message, this must be `
|
|
846
|
-
ErrorLevel: literal<"warn">
|
|
847
|
-
Inference:
|
|
848
|
-
properties:
|
|
849
|
-
prosody:
|
|
850
|
-
type: optional<ProsodyInference>
|
|
851
|
-
docs: Prosody model inference results.
|
|
852
|
-
MillisecondInterval:
|
|
853
|
-
properties:
|
|
854
|
-
begin:
|
|
855
|
-
type: integer
|
|
856
|
-
docs: Start time of the interval in milliseconds.
|
|
857
|
-
end:
|
|
858
|
-
type: integer
|
|
859
|
-
docs: End time of the interval in milliseconds.
|
|
860
|
-
PauseAssistantMessage:
|
|
861
|
-
docs: >-
|
|
862
|
-
Pause responses from EVI. Chat history is still saved and sent after
|
|
863
|
-
resuming.
|
|
864
|
-
properties:
|
|
827
|
+
The type of message sent through the socket; for a Resume Assistant
|
|
828
|
+
message, this must be `resume_assistant_message`.
|
|
865
829
|
custom_session_id:
|
|
866
830
|
type: optional<string>
|
|
867
831
|
docs: >-
|
|
868
832
|
Used to manage conversational state, correlate frontend and backend
|
|
869
833
|
data, and persist conversations across EVI sessions.
|
|
834
|
+
SessionSettings:
|
|
835
|
+
docs: Settings for this chat session.
|
|
836
|
+
properties:
|
|
870
837
|
type:
|
|
871
|
-
type: literal<"
|
|
838
|
+
type: literal<"session_settings">
|
|
872
839
|
docs: >-
|
|
873
|
-
The type of message sent through the socket; for a
|
|
874
|
-
message, this must be `
|
|
875
|
-
ProsodyInference:
|
|
876
|
-
properties:
|
|
877
|
-
scores: EmotionScores
|
|
878
|
-
ResumeAssistantMessage:
|
|
879
|
-
docs: >-
|
|
880
|
-
Resume responses from EVI. Chat history sent while paused will now be
|
|
881
|
-
sent.
|
|
882
|
-
properties:
|
|
840
|
+
The type of message sent through the socket; for a Session Settings
|
|
841
|
+
message, this must be `session_settings`.
|
|
883
842
|
custom_session_id:
|
|
884
843
|
type: optional<string>
|
|
885
844
|
docs: >-
|
|
886
845
|
Used to manage conversational state, correlate frontend and backend
|
|
887
846
|
data, and persist conversations across EVI sessions.
|
|
888
|
-
|
|
889
|
-
type:
|
|
847
|
+
system_prompt:
|
|
848
|
+
type: optional<string>
|
|
890
849
|
docs: >-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
Role:
|
|
894
|
-
enum:
|
|
895
|
-
- assistant
|
|
896
|
-
- system
|
|
897
|
-
- user
|
|
898
|
-
- all
|
|
899
|
-
- tool
|
|
900
|
-
SessionSettings:
|
|
901
|
-
docs: Settings for this chat session.
|
|
902
|
-
properties:
|
|
903
|
-
audio:
|
|
904
|
-
type: optional<AudioConfiguration>
|
|
905
|
-
docs: Audio configuration.
|
|
906
|
-
builtin_tools:
|
|
907
|
-
type: optional<list<BuiltinToolConfig>>
|
|
908
|
-
docs: List of builtin tools to enable.
|
|
850
|
+
Instructions for how the system should respond to the user. Set to
|
|
851
|
+
null to use the default system prompt.
|
|
909
852
|
context:
|
|
910
853
|
type: optional<Context>
|
|
911
854
|
docs: User context to inject. Set to null to disable context injection.
|
|
912
|
-
|
|
913
|
-
type: optional<
|
|
914
|
-
docs:
|
|
915
|
-
Used to manage conversational state, correlate frontend and backend
|
|
916
|
-
data, and persist conversations across EVI sessions.
|
|
855
|
+
audio:
|
|
856
|
+
type: optional<AudioConfiguration>
|
|
857
|
+
docs: Audio configuration.
|
|
917
858
|
language_model_api_key:
|
|
918
859
|
type: optional<string>
|
|
919
860
|
docs: Third party API key for the language model used for non-Hume models.
|
|
920
|
-
system_prompt:
|
|
921
|
-
type: optional<string>
|
|
922
|
-
docs: >-
|
|
923
|
-
Instructions for how the system should respond to the user. Set to
|
|
924
|
-
null to use the default system prompt.
|
|
925
861
|
tools:
|
|
926
862
|
type: optional<list<Tool>>
|
|
927
863
|
docs: List of tools to enable.
|
|
928
|
-
|
|
929
|
-
type:
|
|
930
|
-
docs:
|
|
931
|
-
|
|
932
|
-
message, this must be `session_settings`.
|
|
864
|
+
builtin_tools:
|
|
865
|
+
type: optional<list<BuiltinToolConfig>>
|
|
866
|
+
docs: List of builtin tools to enable.
|
|
867
|
+
metadata: optional<map<string, unknown>>
|
|
933
868
|
Tool:
|
|
934
869
|
properties:
|
|
870
|
+
type:
|
|
871
|
+
type: ToolType
|
|
872
|
+
docs: Type of tool.
|
|
873
|
+
name:
|
|
874
|
+
type: string
|
|
875
|
+
docs: Name of the tool.
|
|
876
|
+
parameters:
|
|
877
|
+
type: string
|
|
878
|
+
docs: Parameters of the tool. Is a stringified JSON schema.
|
|
935
879
|
description:
|
|
936
880
|
type: optional<string>
|
|
937
881
|
docs: Description of the function.
|
|
@@ -940,80 +884,45 @@ types:
|
|
|
940
884
|
docs: >-
|
|
941
885
|
Fallback content of the tool, passed to the LLM if the function call
|
|
942
886
|
response fails.
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
docs: Name of the tool.
|
|
946
|
-
parameters:
|
|
947
|
-
type: string
|
|
948
|
-
docs: Parameters of the tool. Is a stringified JSON schema.
|
|
949
|
-
type:
|
|
950
|
-
type: ToolType
|
|
951
|
-
docs: Type of tool.
|
|
952
|
-
ToolCallMessage:
|
|
953
|
-
docs: When provided, the output is a tool call.
|
|
887
|
+
ToolErrorMessage:
|
|
888
|
+
docs: When provided, the output is a function call error.
|
|
954
889
|
properties:
|
|
890
|
+
type:
|
|
891
|
+
type: literal<"tool_error">
|
|
892
|
+
docs: >-
|
|
893
|
+
The type of message sent through the socket; for a Tool Error message,
|
|
894
|
+
this must be `tool_error`.
|
|
955
895
|
custom_session_id:
|
|
956
896
|
type: optional<string>
|
|
957
897
|
docs: >-
|
|
958
898
|
Used to manage conversational state, correlate frontend and backend
|
|
959
899
|
data, and persist conversations across EVI sessions.
|
|
960
|
-
name:
|
|
961
|
-
type: string
|
|
962
|
-
docs: Name of the tool called.
|
|
963
|
-
parameters:
|
|
964
|
-
type: string
|
|
965
|
-
docs: Parameters of the tool call. Is a stringified JSON schema.
|
|
966
|
-
response_required:
|
|
967
|
-
type: boolean
|
|
968
|
-
docs: Whether a response is required from the developer.
|
|
969
|
-
tool_call_id:
|
|
970
|
-
type: string
|
|
971
|
-
docs: ID of the tool call.
|
|
972
900
|
tool_type:
|
|
973
901
|
type: optional<ToolType>
|
|
974
902
|
docs: Type of tool called, either 'builtin' or 'function'.
|
|
975
|
-
|
|
976
|
-
type:
|
|
977
|
-
docs:
|
|
978
|
-
The type of message sent through the socket; for a Tool Call message,
|
|
979
|
-
this must be `tool_call`.
|
|
980
|
-
ToolErrorMessage:
|
|
981
|
-
docs: When provided, the output is a function call error.
|
|
982
|
-
properties:
|
|
983
|
-
code:
|
|
984
|
-
type: optional<string>
|
|
985
|
-
docs: Error code.
|
|
903
|
+
tool_call_id:
|
|
904
|
+
type: string
|
|
905
|
+
docs: ID of the tool call.
|
|
986
906
|
content:
|
|
987
907
|
type: optional<string>
|
|
988
908
|
docs: The content passed to the LLM in place of the tool response.
|
|
989
|
-
custom_session_id:
|
|
990
|
-
type: optional<string>
|
|
991
|
-
docs: >-
|
|
992
|
-
Used to manage conversational state, correlate frontend and backend
|
|
993
|
-
data, and persist conversations across EVI sessions.
|
|
994
909
|
error:
|
|
995
910
|
type: string
|
|
996
911
|
docs: Error message from the tool call, not exposed to the LLM or user.
|
|
912
|
+
code:
|
|
913
|
+
type: optional<string>
|
|
914
|
+
docs: Error code.
|
|
997
915
|
level:
|
|
998
916
|
type: optional<ErrorLevel>
|
|
999
917
|
docs: Error level.
|
|
1000
|
-
tool_call_id:
|
|
1001
|
-
type: string
|
|
1002
|
-
docs: ID of the tool call.
|
|
1003
|
-
tool_type:
|
|
1004
|
-
type: optional<ToolType>
|
|
1005
|
-
docs: Type of tool called, either 'builtin' or 'function'.
|
|
1006
|
-
type:
|
|
1007
|
-
type: literal<"tool_error">
|
|
1008
|
-
docs: >-
|
|
1009
|
-
The type of message sent through the socket; for a Tool Error message,
|
|
1010
|
-
this must be `tool_error`.
|
|
1011
918
|
ToolResponseMessage:
|
|
1012
919
|
docs: When provided, the output is a function call response.
|
|
1013
920
|
properties:
|
|
1014
|
-
|
|
1015
|
-
type:
|
|
1016
|
-
docs:
|
|
921
|
+
type:
|
|
922
|
+
type: literal<"tool_response">
|
|
923
|
+
docs: >-
|
|
924
|
+
The type of message sent through the socket; for a Tool Response
|
|
925
|
+
message, this must be `tool_response`.
|
|
1017
926
|
custom_session_id:
|
|
1018
927
|
type: optional<string>
|
|
1019
928
|
docs: >-
|
|
@@ -1022,13 +931,11 @@ types:
|
|
|
1022
931
|
tool_call_id:
|
|
1023
932
|
type: string
|
|
1024
933
|
docs: ID of the tool call.
|
|
934
|
+
content:
|
|
935
|
+
type: string
|
|
936
|
+
docs: Return value of the tool call.
|
|
1025
937
|
tool_name: optional<string>
|
|
1026
938
|
tool_type: optional<ToolType>
|
|
1027
|
-
type:
|
|
1028
|
-
type: literal<"tool_response">
|
|
1029
|
-
docs: >-
|
|
1030
|
-
The type of message sent through the socket; for a Tool Response
|
|
1031
|
-
message, this must be `tool_response`.
|
|
1032
939
|
ToolType:
|
|
1033
940
|
enum:
|
|
1034
941
|
- builtin
|
|
@@ -1036,6 +943,11 @@ types:
|
|
|
1036
943
|
UserInput:
|
|
1037
944
|
docs: User text to insert into the conversation.
|
|
1038
945
|
properties:
|
|
946
|
+
type:
|
|
947
|
+
type: literal<"user_input">
|
|
948
|
+
docs: >-
|
|
949
|
+
The type of message sent through the socket; for a User Input message,
|
|
950
|
+
this must be `user_input`.
|
|
1039
951
|
custom_session_id:
|
|
1040
952
|
type: optional<string>
|
|
1041
953
|
docs: >-
|
|
@@ -1044,38 +956,259 @@ types:
|
|
|
1044
956
|
text:
|
|
1045
957
|
type: string
|
|
1046
958
|
docs: User text to insert into the conversation.
|
|
959
|
+
AssistantEnd:
|
|
960
|
+
docs: When provided, the output is an assistant end message.
|
|
961
|
+
properties:
|
|
1047
962
|
type:
|
|
1048
|
-
type: literal<"
|
|
963
|
+
type: literal<"assistant_message">
|
|
1049
964
|
docs: >-
|
|
1050
|
-
The type of message sent through the socket; for
|
|
1051
|
-
this must be `
|
|
1052
|
-
|
|
1053
|
-
|
|
965
|
+
The type of message sent through the socket; for an Assistant End
|
|
966
|
+
message, this must be `assistant_end`.
|
|
967
|
+
custom_session_id:
|
|
968
|
+
type: optional<string>
|
|
969
|
+
docs: >-
|
|
970
|
+
Used to manage conversational state, correlate frontend and backend
|
|
971
|
+
data, and persist conversations across EVI sessions.
|
|
972
|
+
AssistantMessage:
|
|
973
|
+
docs: When provided, the output is an assistant message.
|
|
1054
974
|
properties:
|
|
975
|
+
type:
|
|
976
|
+
type: literal<"assistant_message">
|
|
977
|
+
docs: >-
|
|
978
|
+
The type of message sent through the socket; for an Assistant Message,
|
|
979
|
+
this must be `assistant_message`.
|
|
1055
980
|
custom_session_id:
|
|
1056
981
|
type: optional<string>
|
|
1057
982
|
docs: >-
|
|
1058
983
|
Used to manage conversational state, correlate frontend and backend
|
|
1059
984
|
data, and persist conversations across EVI sessions.
|
|
1060
|
-
|
|
985
|
+
id:
|
|
986
|
+
type: optional<string>
|
|
987
|
+
docs: ID of the assistant message.
|
|
988
|
+
message:
|
|
989
|
+
type: ChatMessage
|
|
990
|
+
docs: Transcript of the message.
|
|
991
|
+
models:
|
|
992
|
+
type: Inference
|
|
993
|
+
docs: Inference model results.
|
|
994
|
+
from_text:
|
|
995
|
+
type: boolean
|
|
996
|
+
docs: Indicates if this message was constructed from a text input message.
|
|
997
|
+
AudioOutput:
|
|
998
|
+
docs: When provided, the output is audio.
|
|
999
|
+
properties:
|
|
1000
|
+
type:
|
|
1001
|
+
type: literal<"audio_output">
|
|
1002
|
+
docs: >-
|
|
1003
|
+
The type of message sent through the socket; for an Audio Output
|
|
1004
|
+
message, this must be `audio_output`.
|
|
1005
|
+
custom_session_id:
|
|
1006
|
+
type: optional<string>
|
|
1007
|
+
docs: >-
|
|
1008
|
+
Used to manage conversational state, correlate frontend and backend
|
|
1009
|
+
data, and persist conversations across EVI sessions.
|
|
1010
|
+
id:
|
|
1011
|
+
type: string
|
|
1012
|
+
docs: ID of the audio output.
|
|
1013
|
+
data:
|
|
1014
|
+
type: string
|
|
1015
|
+
docs: Base64 encoded audio output.
|
|
1016
|
+
validation:
|
|
1017
|
+
format: base64
|
|
1018
|
+
ChatMessageToolResult:
|
|
1019
|
+
discriminated: false
|
|
1020
|
+
docs: Function call response from client.
|
|
1021
|
+
union:
|
|
1022
|
+
- ToolResponseMessage
|
|
1023
|
+
- ToolErrorMessage
|
|
1024
|
+
ChatMessage:
|
|
1025
|
+
properties:
|
|
1026
|
+
role:
|
|
1027
|
+
type: Role
|
|
1028
|
+
docs: Role of who is providing the message.
|
|
1029
|
+
content:
|
|
1030
|
+
type: optional<string>
|
|
1031
|
+
docs: Transcript of the message.
|
|
1032
|
+
tool_call:
|
|
1033
|
+
type: optional<ToolCallMessage>
|
|
1034
|
+
docs: Function call name and arguments.
|
|
1035
|
+
tool_result:
|
|
1036
|
+
type: optional<ChatMessageToolResult>
|
|
1037
|
+
docs: Function call response from client.
|
|
1038
|
+
ChatMetadata:
|
|
1039
|
+
docs: When provided, the output is a chat metadata message.
|
|
1040
|
+
properties:
|
|
1041
|
+
type:
|
|
1042
|
+
type: literal<"chat_metadata">
|
|
1043
|
+
docs: >-
|
|
1044
|
+
The type of message sent through the socket; for a Chat Metadata
|
|
1045
|
+
message, this must be `chat_metadata`.
|
|
1046
|
+
custom_session_id:
|
|
1047
|
+
type: optional<string>
|
|
1048
|
+
docs: >-
|
|
1049
|
+
Used to manage conversational state, correlate frontend and backend
|
|
1050
|
+
data, and persist conversations across EVI sessions.
|
|
1051
|
+
chat_group_id:
|
|
1052
|
+
type: string
|
|
1053
|
+
docs: ID of the chat group. Used to resume a chat.
|
|
1054
|
+
chat_id:
|
|
1055
|
+
type: string
|
|
1056
|
+
docs: ID of the chat.
|
|
1057
|
+
request_id:
|
|
1058
|
+
type: optional<string>
|
|
1059
|
+
docs: ID of the initiating request.
|
|
1060
|
+
EmotionScores:
|
|
1061
|
+
properties:
|
|
1062
|
+
Admiration: double
|
|
1063
|
+
Adoration: double
|
|
1064
|
+
Aesthetic Appreciation: double
|
|
1065
|
+
Amusement: double
|
|
1066
|
+
Anger: double
|
|
1067
|
+
Anxiety: double
|
|
1068
|
+
Awe: double
|
|
1069
|
+
Awkwardness: double
|
|
1070
|
+
Boredom: double
|
|
1071
|
+
Calmness: double
|
|
1072
|
+
Concentration: double
|
|
1073
|
+
Confusion: double
|
|
1074
|
+
Contemplation: double
|
|
1075
|
+
Contempt: double
|
|
1076
|
+
Contentment: double
|
|
1077
|
+
Craving: double
|
|
1078
|
+
Desire: double
|
|
1079
|
+
Determination: double
|
|
1080
|
+
Disappointment: double
|
|
1081
|
+
Disgust: double
|
|
1082
|
+
Distress: double
|
|
1083
|
+
Doubt: double
|
|
1084
|
+
Ecstasy: double
|
|
1085
|
+
Embarrassment: double
|
|
1086
|
+
Empathic Pain: double
|
|
1087
|
+
Entrancement: double
|
|
1088
|
+
Envy: double
|
|
1089
|
+
Excitement: double
|
|
1090
|
+
Fear: double
|
|
1091
|
+
Guilt: double
|
|
1092
|
+
Horror: double
|
|
1093
|
+
Interest: double
|
|
1094
|
+
Joy: double
|
|
1095
|
+
Love: double
|
|
1096
|
+
Nostalgia: double
|
|
1097
|
+
Pain: double
|
|
1098
|
+
Pride: double
|
|
1099
|
+
Realization: double
|
|
1100
|
+
Relief: double
|
|
1101
|
+
Romance: double
|
|
1102
|
+
Sadness: double
|
|
1103
|
+
Satisfaction: double
|
|
1104
|
+
Shame: double
|
|
1105
|
+
Surprise (negative): double
|
|
1106
|
+
Surprise (positive): double
|
|
1107
|
+
Sympathy: double
|
|
1108
|
+
Tiredness: double
|
|
1109
|
+
Triumph: double
|
|
1110
|
+
WebSocketError:
|
|
1111
|
+
docs: When provided, the output is an error message.
|
|
1112
|
+
properties:
|
|
1113
|
+
type:
|
|
1114
|
+
type: literal<"error">
|
|
1115
|
+
docs: >-
|
|
1116
|
+
The type of message sent through the socket; for a Web Socket Error
|
|
1117
|
+
message, this must be `error`.
|
|
1118
|
+
custom_session_id:
|
|
1119
|
+
type: optional<string>
|
|
1120
|
+
docs: >-
|
|
1121
|
+
Used to manage conversational state, correlate frontend and backend
|
|
1122
|
+
data, and persist conversations across EVI sessions.
|
|
1123
|
+
code:
|
|
1124
|
+
type: string
|
|
1125
|
+
docs: Error code.
|
|
1126
|
+
slug:
|
|
1127
|
+
type: string
|
|
1128
|
+
docs: Error slug.
|
|
1129
|
+
message:
|
|
1130
|
+
type: string
|
|
1131
|
+
docs: Error message.
|
|
1132
|
+
Inference:
|
|
1133
|
+
properties:
|
|
1134
|
+
prosody:
|
|
1135
|
+
type: optional<ProsodyInference>
|
|
1136
|
+
docs: Prosody model inference results.
|
|
1137
|
+
MillisecondInterval:
|
|
1138
|
+
properties:
|
|
1139
|
+
begin:
|
|
1061
1140
|
type: integer
|
|
1062
|
-
docs:
|
|
1141
|
+
docs: Start time of the interval in milliseconds.
|
|
1142
|
+
end:
|
|
1143
|
+
type: integer
|
|
1144
|
+
docs: End time of the interval in milliseconds.
|
|
1145
|
+
ProsodyInference:
|
|
1146
|
+
properties:
|
|
1147
|
+
scores: EmotionScores
|
|
1148
|
+
Role:
|
|
1149
|
+
enum:
|
|
1150
|
+
- assistant
|
|
1151
|
+
- system
|
|
1152
|
+
- user
|
|
1153
|
+
- all
|
|
1154
|
+
- tool
|
|
1155
|
+
ToolCallMessage:
|
|
1156
|
+
docs: When provided, the output is a tool call.
|
|
1157
|
+
properties:
|
|
1158
|
+
name:
|
|
1159
|
+
type: string
|
|
1160
|
+
docs: Name of the tool called.
|
|
1161
|
+
parameters:
|
|
1162
|
+
type: string
|
|
1163
|
+
docs: Parameters of the tool call. Is a stringified JSON schema.
|
|
1164
|
+
tool_call_id:
|
|
1165
|
+
type: string
|
|
1166
|
+
docs: ID of the tool call.
|
|
1167
|
+
type:
|
|
1168
|
+
type: literal<"tool_call">
|
|
1169
|
+
docs: >-
|
|
1170
|
+
The type of message sent through the socket; for a Tool Call message,
|
|
1171
|
+
this must be `tool_call`.
|
|
1172
|
+
custom_session_id:
|
|
1173
|
+
type: optional<string>
|
|
1174
|
+
docs: >-
|
|
1175
|
+
Used to manage conversational state, correlate frontend and backend
|
|
1176
|
+
data, and persist conversations across EVI sessions.
|
|
1177
|
+
tool_type:
|
|
1178
|
+
type: optional<ToolType>
|
|
1179
|
+
docs: Type of tool called, either 'builtin' or 'function'.
|
|
1180
|
+
response_required:
|
|
1181
|
+
type: boolean
|
|
1182
|
+
docs: Whether a response is required from the developer.
|
|
1183
|
+
UserInterruption:
|
|
1184
|
+
docs: When provided, the output is an interruption.
|
|
1185
|
+
properties:
|
|
1063
1186
|
type:
|
|
1064
1187
|
type: literal<"user_interruption">
|
|
1065
1188
|
docs: >-
|
|
1066
1189
|
The type of message sent through the socket; for a User Interruption
|
|
1067
1190
|
message, this must be `user_interruption`.
|
|
1191
|
+
custom_session_id:
|
|
1192
|
+
type: optional<string>
|
|
1193
|
+
docs: >-
|
|
1194
|
+
Used to manage conversational state, correlate frontend and backend
|
|
1195
|
+
data, and persist conversations across EVI sessions.
|
|
1196
|
+
time:
|
|
1197
|
+
type: integer
|
|
1198
|
+
docs: Unix timestamp of the detected user interruption.
|
|
1068
1199
|
UserMessage:
|
|
1069
1200
|
docs: When provided, the output is a user message.
|
|
1070
1201
|
properties:
|
|
1202
|
+
type:
|
|
1203
|
+
type: literal<"user_message">
|
|
1204
|
+
docs: >-
|
|
1205
|
+
The type of message sent through the socket; for a User message, this
|
|
1206
|
+
must be `user_message`.
|
|
1071
1207
|
custom_session_id:
|
|
1072
1208
|
type: optional<string>
|
|
1073
1209
|
docs: >-
|
|
1074
1210
|
Used to manage conversational state, correlate frontend and backend
|
|
1075
1211
|
data, and persist conversations across EVI sessions.
|
|
1076
|
-
from_text:
|
|
1077
|
-
type: boolean
|
|
1078
|
-
docs: Indicates if this message was constructed from a text input message.
|
|
1079
1212
|
message:
|
|
1080
1213
|
type: ChatMessage
|
|
1081
1214
|
docs: Transcript of the message.
|
|
@@ -1085,8 +1218,107 @@ types:
|
|
|
1085
1218
|
time:
|
|
1086
1219
|
type: MillisecondInterval
|
|
1087
1220
|
docs: Start and End time of user message.
|
|
1088
|
-
|
|
1089
|
-
type:
|
|
1090
|
-
docs:
|
|
1091
|
-
|
|
1092
|
-
|
|
1221
|
+
from_text:
|
|
1222
|
+
type: boolean
|
|
1223
|
+
docs: Indicates if this message was constructed from a text input message.
|
|
1224
|
+
TtsInput:
|
|
1225
|
+
properties:
|
|
1226
|
+
type: optional<literal<"tts">>
|
|
1227
|
+
TextInput:
|
|
1228
|
+
properties:
|
|
1229
|
+
type: optional<literal<"text_input">>
|
|
1230
|
+
FunctionCallResponseInput:
|
|
1231
|
+
properties:
|
|
1232
|
+
type: optional<literal<"function_call_response">>
|
|
1233
|
+
ExtendedVoiceArgs:
|
|
1234
|
+
properties:
|
|
1235
|
+
text: string
|
|
1236
|
+
voice_args: VoiceArgs
|
|
1237
|
+
Features:
|
|
1238
|
+
properties:
|
|
1239
|
+
confidence:
|
|
1240
|
+
type: optional<double>
|
|
1241
|
+
docs: Confidence (F->M)
|
|
1242
|
+
default: 0
|
|
1243
|
+
validation:
|
|
1244
|
+
min: -20
|
|
1245
|
+
max: 20
|
|
1246
|
+
enthusiasm:
|
|
1247
|
+
type: optional<double>
|
|
1248
|
+
docs: Enthusiasm (M->A)
|
|
1249
|
+
default: 0
|
|
1250
|
+
validation:
|
|
1251
|
+
min: -20
|
|
1252
|
+
max: 20
|
|
1253
|
+
affirmative:
|
|
1254
|
+
type: optional<double>
|
|
1255
|
+
docs: Affirmative (F->A/M)
|
|
1256
|
+
default: 0
|
|
1257
|
+
validation:
|
|
1258
|
+
min: -20
|
|
1259
|
+
max: 20
|
|
1260
|
+
articulate:
|
|
1261
|
+
type: optional<double>
|
|
1262
|
+
docs: Articulate (A->M)
|
|
1263
|
+
default: 0
|
|
1264
|
+
validation:
|
|
1265
|
+
min: -20
|
|
1266
|
+
max: 20
|
|
1267
|
+
maturity:
|
|
1268
|
+
type: optional<double>
|
|
1269
|
+
docs: Maturity (M->F)
|
|
1270
|
+
default: 0
|
|
1271
|
+
validation:
|
|
1272
|
+
min: -20
|
|
1273
|
+
max: 20
|
|
1274
|
+
defeated:
|
|
1275
|
+
type: optional<double>
|
|
1276
|
+
docs: Defeated (N->M)
|
|
1277
|
+
default: 0
|
|
1278
|
+
validation:
|
|
1279
|
+
min: -20
|
|
1280
|
+
max: 20
|
|
1281
|
+
feminine:
|
|
1282
|
+
type: optional<double>
|
|
1283
|
+
docs: Feminine (M->F)
|
|
1284
|
+
default: 0
|
|
1285
|
+
validation:
|
|
1286
|
+
min: -20
|
|
1287
|
+
max: 20
|
|
1288
|
+
nerdy:
|
|
1289
|
+
type: optional<double>
|
|
1290
|
+
docs: Nerdy (A->A)
|
|
1291
|
+
default: 0
|
|
1292
|
+
validation:
|
|
1293
|
+
min: -20
|
|
1294
|
+
max: 20
|
|
1295
|
+
HTTPValidationError:
|
|
1296
|
+
properties:
|
|
1297
|
+
detail: optional<list<ValidationError>>
|
|
1298
|
+
ValidationErrorLocItem:
|
|
1299
|
+
discriminated: false
|
|
1300
|
+
union:
|
|
1301
|
+
- string
|
|
1302
|
+
- integer
|
|
1303
|
+
ValidationError:
|
|
1304
|
+
properties:
|
|
1305
|
+
loc: list<ValidationErrorLocItem>
|
|
1306
|
+
msg: string
|
|
1307
|
+
type: string
|
|
1308
|
+
VoiceArgs:
|
|
1309
|
+
properties:
|
|
1310
|
+
voice: optional<VoiceNameEnum>
|
|
1311
|
+
features: optional<Features>
|
|
1312
|
+
characters_per_second_ratio:
|
|
1313
|
+
type: optional<double>
|
|
1314
|
+
default: 1
|
|
1315
|
+
validation:
|
|
1316
|
+
min: 0.5
|
|
1317
|
+
max: 2
|
|
1318
|
+
baseline: optional<boolean>
|
|
1319
|
+
reconstruct: optional<boolean>
|
|
1320
|
+
VoiceNameEnum:
|
|
1321
|
+
enum:
|
|
1322
|
+
- ITO
|
|
1323
|
+
- KORA
|
|
1324
|
+
- DACHER
|