hume 0.9.15 → 0.9.17
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 +2347 -2345
- package/.mock/definition/empathic-voice/chat.yml +34 -34
- package/.mock/definition/empathic-voice/chatGroups.yml +9 -9
- package/.mock/definition/empathic-voice/chatWebhooks.yml +3 -3
- package/.mock/definition/empathic-voice/chats.yml +7 -7
- package/.mock/definition/empathic-voice/configs.yml +19 -19
- package/.mock/definition/empathic-voice/customVoices.yml +13 -13
- package/.mock/definition/empathic-voice/prompts.yml +19 -19
- package/.mock/definition/empathic-voice/tools.yml +19 -19
- package/.mock/definition/expression-measurement/stream/stream.yml +206 -206
- package/.mock/definition/tts/__package__.yml +60 -2
- package/.mock/definition/tts/voices.yml +76 -0
- package/.mock/fern.config.json +1 -1
- package/api/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/api/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
- package/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
- package/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
- package/api/resources/empathicVoice/resources/customVoices/client/Client.js +6 -6
- package/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
- package/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
- 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 +8 -8
- package/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/api/resources/empathicVoice/types/AudioInput.d.ts +6 -6
- 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 +8 -8
- package/api/resources/empathicVoice/types/Context.d.ts +6 -6
- package/api/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/api/resources/empathicVoice/types/SessionSettings.d.ts +27 -27
- 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 +16 -16
- package/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +8 -8
- package/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/api/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
- package/api/resources/empathicVoice/types/UserMessage.d.ts +10 -10
- package/api/resources/empathicVoice/types/WebSocketError.d.ts +10 -8
- package/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +8 -8
- package/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +6 -6
- package/api/resources/empathicVoice/types/index.d.ts +84 -84
- package/api/resources/empathicVoice/types/index.js +84 -84
- package/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
- package/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/api/resources/index.d.ts +1 -1
- package/api/resources/index.js +2 -2
- package/api/resources/tts/client/Client.d.ts +1 -1
- package/api/resources/tts/client/Client.js +5 -5
- package/api/resources/tts/errors/BadRequestError.d.ts +8 -0
- package/api/resources/tts/errors/BadRequestError.js +41 -0
- package/api/resources/tts/errors/index.d.ts +1 -0
- package/api/resources/tts/errors/index.js +1 -0
- package/api/resources/tts/resources/voices/client/Client.d.ts +28 -0
- package/api/resources/tts/resources/voices/client/Client.js +144 -2
- package/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.d.ts +15 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.js +5 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesListRequest.d.ts +29 -0
- package/api/resources/tts/resources/voices/client/requests/VoicesListRequest.js +5 -0
- package/api/resources/tts/resources/voices/client/requests/index.d.ts +2 -0
- package/api/resources/tts/types/ErrorResponse.d.ts +8 -0
- package/api/resources/tts/types/ErrorResponse.js +5 -0
- package/api/resources/tts/types/ReturnPagedVoices.d.ts +13 -0
- package/api/resources/tts/types/ReturnPagedVoices.js +5 -0
- package/api/resources/tts/types/ReturnVoice.d.ts +17 -1
- package/api/resources/tts/types/SnippetAudioChunk.d.ts +15 -0
- package/api/resources/tts/types/SnippetAudioChunk.js +5 -0
- package/api/resources/tts/types/index.d.ts +3 -0
- package/api/resources/tts/types/index.js +3 -0
- package/dist/api/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/chat/types/index.js +1 -1
- package/dist/api/resources/empathicVoice/resources/chatGroups/client/Client.js +4 -4
- package/dist/api/resources/empathicVoice/resources/chats/client/Client.js +3 -3
- package/dist/api/resources/empathicVoice/resources/configs/client/Client.js +9 -9
- package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.js +6 -6
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +9 -9
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +9 -9
- 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 +8 -8
- package/dist/api/resources/empathicVoice/types/AudioConfiguration.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/AudioInput.d.ts +6 -6
- 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 +8 -8
- package/dist/api/resources/empathicVoice/types/Context.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/ErrorResponse.d.ts +1 -0
- package/dist/api/resources/empathicVoice/types/PauseAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/ResumeAssistantMessage.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +27 -27
- 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 +16 -16
- package/dist/api/resources/empathicVoice/types/ToolResponseMessage.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/UserInput.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/UserInterruption.d.ts +4 -4
- package/dist/api/resources/empathicVoice/types/UserMessage.d.ts +10 -10
- package/dist/api/resources/empathicVoice/types/WebSocketError.d.ts +10 -8
- package/dist/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +8 -8
- package/dist/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +6 -6
- package/dist/api/resources/empathicVoice/types/index.d.ts +84 -84
- package/dist/api/resources/empathicVoice/types/index.js +84 -84
- package/dist/api/resources/expressionMeasurement/resources/batch/client/Client.js +6 -6
- package/dist/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/dist/api/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/dist/api/resources/index.d.ts +1 -1
- package/dist/api/resources/index.js +2 -2
- package/dist/api/resources/tts/client/Client.d.ts +1 -1
- package/dist/api/resources/tts/client/Client.js +5 -5
- package/dist/api/resources/tts/errors/BadRequestError.d.ts +8 -0
- package/dist/api/resources/tts/errors/BadRequestError.js +41 -0
- package/dist/api/resources/tts/errors/index.d.ts +1 -0
- package/dist/api/resources/tts/errors/index.js +1 -0
- package/dist/api/resources/tts/resources/voices/client/Client.d.ts +28 -0
- package/dist/api/resources/tts/resources/voices/client/Client.js +144 -2
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.d.ts +15 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesDeleteRequest.js +5 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesListRequest.d.ts +29 -0
- package/dist/api/resources/tts/resources/voices/client/requests/VoicesListRequest.js +5 -0
- package/dist/api/resources/tts/resources/voices/client/requests/index.d.ts +2 -0
- package/dist/api/resources/tts/types/ErrorResponse.d.ts +8 -0
- package/dist/api/resources/tts/types/ErrorResponse.js +5 -0
- package/dist/api/resources/tts/types/ReturnPagedVoices.d.ts +13 -0
- package/dist/api/resources/tts/types/ReturnPagedVoices.js +5 -0
- package/dist/api/resources/tts/types/ReturnVoice.d.ts +17 -1
- package/dist/api/resources/tts/types/SnippetAudioChunk.d.ts +15 -0
- package/dist/api/resources/tts/types/SnippetAudioChunk.js +5 -0
- package/dist/api/resources/tts/types/index.d.ts +3 -0
- package/dist/api/resources/tts/types/index.js +3 -0
- package/dist/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/resources/chat/types/index.js +1 -1
- 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 +2 -2
- package/dist/serialization/resources/empathicVoice/types/ChatMetadata.js +2 -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/ErrorResponse.d.ts +1 -0
- package/dist/serialization/resources/empathicVoice/types/ErrorResponse.js +1 -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/ResumeAssistantMessage.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
- package/dist/serialization/resources/empathicVoice/types/SessionSettings.js +8 -8
- 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/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 +3 -3
- package/dist/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -3
- package/dist/serialization/resources/empathicVoice/types/WebSocketError.js +4 -3
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +4 -4
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatEnded.js +4 -4
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +3 -3
- package/dist/serialization/resources/empathicVoice/types/WebhookEventChatStarted.js +3 -3
- package/dist/serialization/resources/empathicVoice/types/index.d.ts +84 -84
- package/dist/serialization/resources/empathicVoice/types/index.js +84 -84
- package/dist/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/dist/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/dist/serialization/resources/index.d.ts +1 -1
- package/dist/serialization/resources/index.js +2 -2
- package/dist/serialization/resources/tts/types/ErrorResponse.d.ts +14 -0
- package/dist/serialization/resources/tts/types/ErrorResponse.js +35 -0
- package/dist/serialization/resources/tts/types/ReturnPagedVoices.d.ts +16 -0
- package/dist/serialization/resources/tts/types/ReturnPagedVoices.js +37 -0
- package/dist/serialization/resources/tts/types/ReturnVoice.d.ts +3 -1
- package/dist/serialization/resources/tts/types/ReturnVoice.js +3 -1
- package/dist/serialization/resources/tts/types/SnippetAudioChunk.d.ts +16 -0
- package/dist/serialization/resources/tts/types/SnippetAudioChunk.js +37 -0
- package/dist/serialization/resources/tts/types/index.d.ts +3 -0
- package/dist/serialization/resources/tts/types/index.js +3 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +351 -221
- package/serialization/resources/empathicVoice/resources/chat/types/index.d.ts +1 -1
- package/serialization/resources/empathicVoice/resources/chat/types/index.js +1 -1
- 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 +2 -2
- package/serialization/resources/empathicVoice/types/ChatMetadata.js +2 -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/ErrorResponse.d.ts +1 -0
- package/serialization/resources/empathicVoice/types/ErrorResponse.js +1 -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/ResumeAssistantMessage.d.ts +1 -1
- package/serialization/resources/empathicVoice/types/ResumeAssistantMessage.js +1 -1
- package/serialization/resources/empathicVoice/types/SessionSettings.d.ts +8 -8
- package/serialization/resources/empathicVoice/types/SessionSettings.js +8 -8
- 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/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 +3 -3
- package/serialization/resources/empathicVoice/types/UserMessage.js +3 -3
- package/serialization/resources/empathicVoice/types/WebSocketError.d.ts +4 -3
- package/serialization/resources/empathicVoice/types/WebSocketError.js +4 -3
- package/serialization/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +4 -4
- package/serialization/resources/empathicVoice/types/WebhookEventChatEnded.js +4 -4
- package/serialization/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +3 -3
- package/serialization/resources/empathicVoice/types/WebhookEventChatStarted.js +3 -3
- package/serialization/resources/empathicVoice/types/index.d.ts +84 -84
- package/serialization/resources/empathicVoice/types/index.js +84 -84
- package/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.d.ts +4 -4
- package/serialization/resources/expressionMeasurement/resources/stream/resources/stream/types/index.js +4 -4
- package/serialization/resources/index.d.ts +1 -1
- package/serialization/resources/index.js +2 -2
- package/serialization/resources/tts/types/ErrorResponse.d.ts +14 -0
- package/serialization/resources/tts/types/ErrorResponse.js +35 -0
- package/serialization/resources/tts/types/ReturnPagedVoices.d.ts +16 -0
- package/serialization/resources/tts/types/ReturnPagedVoices.js +37 -0
- package/serialization/resources/tts/types/ReturnVoice.d.ts +3 -1
- package/serialization/resources/tts/types/ReturnVoice.js +3 -1
- package/serialization/resources/tts/types/SnippetAudioChunk.d.ts +16 -0
- package/serialization/resources/tts/types/SnippetAudioChunk.js +37 -0
- package/serialization/resources/tts/types/index.d.ts +3 -0
- package/serialization/resources/tts/types/index.js +3 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -7,7 +7,7 @@ import * as core from "../../../../core";
|
|
|
7
7
|
export declare const ResumeAssistantMessage: core.serialization.ObjectSchema<serializers.empathicVoice.ResumeAssistantMessage.Raw, Hume.empathicVoice.ResumeAssistantMessage>;
|
|
8
8
|
export declare namespace ResumeAssistantMessage {
|
|
9
9
|
interface Raw {
|
|
10
|
-
type: "resume_assistant_message";
|
|
11
10
|
custom_session_id?: string | null;
|
|
11
|
+
type: "resume_assistant_message";
|
|
12
12
|
}
|
|
13
13
|
}
|
|
@@ -29,6 +29,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.ResumeAssistantMessage = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
exports.ResumeAssistantMessage = core.serialization.object({
|
|
32
|
-
type: core.serialization.stringLiteral("resume_assistant_message"),
|
|
33
32
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
33
|
+
type: core.serialization.stringLiteral("resume_assistant_message"),
|
|
34
34
|
});
|
|
@@ -4,23 +4,23 @@
|
|
|
4
4
|
import * as serializers from "../../../index";
|
|
5
5
|
import * as Hume from "../../../../api/index";
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
|
-
import { Context } from "./Context";
|
|
8
7
|
import { AudioConfiguration } from "./AudioConfiguration";
|
|
9
|
-
import { Tool } from "./Tool";
|
|
10
8
|
import { BuiltinToolConfig } from "./BuiltinToolConfig";
|
|
9
|
+
import { Context } from "./Context";
|
|
10
|
+
import { Tool } from "./Tool";
|
|
11
11
|
import { SessionSettingsVariablesValue } from "./SessionSettingsVariablesValue";
|
|
12
12
|
export declare const SessionSettings: core.serialization.ObjectSchema<serializers.empathicVoice.SessionSettings.Raw, Hume.empathicVoice.SessionSettings>;
|
|
13
13
|
export declare namespace SessionSettings {
|
|
14
14
|
interface Raw {
|
|
15
|
-
type: "session_settings";
|
|
16
|
-
custom_session_id?: string | null;
|
|
17
|
-
system_prompt?: string | null;
|
|
18
|
-
context?: Context.Raw | null;
|
|
19
15
|
audio?: AudioConfiguration.Raw | null;
|
|
20
|
-
language_model_api_key?: string | null;
|
|
21
|
-
tools?: Tool.Raw[] | null;
|
|
22
16
|
builtin_tools?: BuiltinToolConfig.Raw[] | null;
|
|
17
|
+
context?: Context.Raw | null;
|
|
18
|
+
custom_session_id?: string | null;
|
|
19
|
+
language_model_api_key?: string | null;
|
|
23
20
|
metadata?: Record<string, unknown> | null;
|
|
21
|
+
system_prompt?: string | null;
|
|
22
|
+
tools?: Tool.Raw[] | null;
|
|
23
|
+
type: "session_settings";
|
|
24
24
|
variables?: Record<string, SessionSettingsVariablesValue.Raw> | null;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -28,20 +28,20 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.SessionSettings = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
|
-
const Context_1 = require("./Context");
|
|
32
31
|
const AudioConfiguration_1 = require("./AudioConfiguration");
|
|
33
|
-
const Tool_1 = require("./Tool");
|
|
34
32
|
const BuiltinToolConfig_1 = require("./BuiltinToolConfig");
|
|
33
|
+
const Context_1 = require("./Context");
|
|
34
|
+
const Tool_1 = require("./Tool");
|
|
35
35
|
const SessionSettingsVariablesValue_1 = require("./SessionSettingsVariablesValue");
|
|
36
36
|
exports.SessionSettings = core.serialization.object({
|
|
37
|
-
type: core.serialization.stringLiteral("session_settings"),
|
|
38
|
-
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
39
|
-
systemPrompt: core.serialization.property("system_prompt", core.serialization.string().optional()),
|
|
40
|
-
context: Context_1.Context.optional(),
|
|
41
37
|
audio: AudioConfiguration_1.AudioConfiguration.optional(),
|
|
42
|
-
languageModelApiKey: core.serialization.property("language_model_api_key", core.serialization.string().optional()),
|
|
43
|
-
tools: core.serialization.list(Tool_1.Tool).optional(),
|
|
44
38
|
builtinTools: core.serialization.property("builtin_tools", core.serialization.list(BuiltinToolConfig_1.BuiltinToolConfig).optional()),
|
|
39
|
+
context: Context_1.Context.optional(),
|
|
40
|
+
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
41
|
+
languageModelApiKey: core.serialization.property("language_model_api_key", core.serialization.string().optional()),
|
|
45
42
|
metadata: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
|
|
43
|
+
systemPrompt: core.serialization.property("system_prompt", core.serialization.string().optional()),
|
|
44
|
+
tools: core.serialization.list(Tool_1.Tool).optional(),
|
|
45
|
+
type: core.serialization.stringLiteral("session_settings"),
|
|
46
46
|
variables: core.serialization.record(core.serialization.string(), SessionSettingsVariablesValue_1.SessionSettingsVariablesValue).optional(),
|
|
47
47
|
});
|
|
@@ -8,10 +8,10 @@ import { ToolType } from "./ToolType";
|
|
|
8
8
|
export declare const Tool: core.serialization.ObjectSchema<serializers.empathicVoice.Tool.Raw, Hume.empathicVoice.Tool>;
|
|
9
9
|
export declare namespace Tool {
|
|
10
10
|
interface Raw {
|
|
11
|
-
type: ToolType.Raw;
|
|
12
|
-
name: string;
|
|
13
|
-
parameters: string;
|
|
14
11
|
description?: string | null;
|
|
15
12
|
fallback_content?: string | null;
|
|
13
|
+
name: string;
|
|
14
|
+
parameters: string;
|
|
15
|
+
type: ToolType.Raw;
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -30,9 +30,9 @@ exports.Tool = void 0;
|
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
const ToolType_1 = require("./ToolType");
|
|
32
32
|
exports.Tool = core.serialization.object({
|
|
33
|
-
type: ToolType_1.ToolType,
|
|
34
|
-
name: core.serialization.string(),
|
|
35
|
-
parameters: core.serialization.string(),
|
|
36
33
|
description: core.serialization.string().optional(),
|
|
37
34
|
fallbackContent: core.serialization.property("fallback_content", core.serialization.string().optional()),
|
|
35
|
+
name: core.serialization.string(),
|
|
36
|
+
parameters: core.serialization.string(),
|
|
37
|
+
type: ToolType_1.ToolType,
|
|
38
38
|
});
|
|
@@ -8,12 +8,12 @@ import { ToolType } from "./ToolType";
|
|
|
8
8
|
export declare const ToolCallMessage: core.serialization.ObjectSchema<serializers.empathicVoice.ToolCallMessage.Raw, Hume.empathicVoice.ToolCallMessage>;
|
|
9
9
|
export declare namespace ToolCallMessage {
|
|
10
10
|
interface Raw {
|
|
11
|
+
custom_session_id?: string | null;
|
|
11
12
|
name: string;
|
|
12
13
|
parameters: string;
|
|
14
|
+
response_required: boolean;
|
|
13
15
|
tool_call_id: string;
|
|
14
|
-
type: "tool_call";
|
|
15
|
-
custom_session_id?: string | null;
|
|
16
16
|
tool_type?: ToolType.Raw | null;
|
|
17
|
-
|
|
17
|
+
type: "tool_call";
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -30,11 +30,11 @@ exports.ToolCallMessage = void 0;
|
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
const ToolType_1 = require("./ToolType");
|
|
32
32
|
exports.ToolCallMessage = core.serialization.object({
|
|
33
|
+
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
33
34
|
name: core.serialization.string(),
|
|
34
35
|
parameters: core.serialization.string(),
|
|
36
|
+
responseRequired: core.serialization.property("response_required", core.serialization.boolean()),
|
|
35
37
|
toolCallId: core.serialization.property("tool_call_id", core.serialization.string()),
|
|
36
|
-
type: core.serialization.stringLiteral("tool_call"),
|
|
37
|
-
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
38
38
|
toolType: core.serialization.property("tool_type", ToolType_1.ToolType.optional()),
|
|
39
|
-
|
|
39
|
+
type: core.serialization.stringLiteral("tool_call"),
|
|
40
40
|
});
|
|
@@ -4,18 +4,18 @@
|
|
|
4
4
|
import * as serializers from "../../../index";
|
|
5
5
|
import * as Hume from "../../../../api/index";
|
|
6
6
|
import * as core from "../../../../core";
|
|
7
|
-
import { ToolType } from "./ToolType";
|
|
8
7
|
import { ErrorLevel } from "./ErrorLevel";
|
|
8
|
+
import { ToolType } from "./ToolType";
|
|
9
9
|
export declare const ToolErrorMessage: core.serialization.ObjectSchema<serializers.empathicVoice.ToolErrorMessage.Raw, Hume.empathicVoice.ToolErrorMessage>;
|
|
10
10
|
export declare namespace ToolErrorMessage {
|
|
11
11
|
interface Raw {
|
|
12
|
-
|
|
13
|
-
custom_session_id?: string | null;
|
|
14
|
-
tool_type?: ToolType.Raw | null;
|
|
15
|
-
tool_call_id: string;
|
|
12
|
+
code?: string | null;
|
|
16
13
|
content?: string | null;
|
|
14
|
+
custom_session_id?: string | null;
|
|
17
15
|
error: string;
|
|
18
|
-
code?: string | null;
|
|
19
16
|
level?: ErrorLevel.Raw | null;
|
|
17
|
+
tool_call_id: string;
|
|
18
|
+
tool_type?: ToolType.Raw | null;
|
|
19
|
+
type: "tool_error";
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -28,15 +28,15 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
exports.ToolErrorMessage = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
|
-
const ToolType_1 = require("./ToolType");
|
|
32
31
|
const ErrorLevel_1 = require("./ErrorLevel");
|
|
32
|
+
const ToolType_1 = require("./ToolType");
|
|
33
33
|
exports.ToolErrorMessage = core.serialization.object({
|
|
34
|
-
|
|
35
|
-
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
36
|
-
toolType: core.serialization.property("tool_type", ToolType_1.ToolType.optional()),
|
|
37
|
-
toolCallId: core.serialization.property("tool_call_id", core.serialization.string()),
|
|
34
|
+
code: core.serialization.string().optional(),
|
|
38
35
|
content: core.serialization.string().optional(),
|
|
36
|
+
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
39
37
|
error: core.serialization.string(),
|
|
40
|
-
code: core.serialization.string().optional(),
|
|
41
38
|
level: ErrorLevel_1.ErrorLevel.optional(),
|
|
39
|
+
toolCallId: core.serialization.property("tool_call_id", core.serialization.string()),
|
|
40
|
+
toolType: core.serialization.property("tool_type", ToolType_1.ToolType.optional()),
|
|
41
|
+
type: core.serialization.stringLiteral("tool_error"),
|
|
42
42
|
});
|
|
@@ -8,11 +8,11 @@ import { ToolType } from "./ToolType";
|
|
|
8
8
|
export declare const ToolResponseMessage: core.serialization.ObjectSchema<serializers.empathicVoice.ToolResponseMessage.Raw, Hume.empathicVoice.ToolResponseMessage>;
|
|
9
9
|
export declare namespace ToolResponseMessage {
|
|
10
10
|
interface Raw {
|
|
11
|
-
|
|
11
|
+
content: string;
|
|
12
12
|
custom_session_id?: string | null;
|
|
13
13
|
tool_call_id: string;
|
|
14
|
-
content: string;
|
|
15
14
|
tool_name?: string | null;
|
|
16
15
|
tool_type?: ToolType.Raw | null;
|
|
16
|
+
type: "tool_response";
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -30,10 +30,10 @@ exports.ToolResponseMessage = void 0;
|
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
const ToolType_1 = require("./ToolType");
|
|
32
32
|
exports.ToolResponseMessage = core.serialization.object({
|
|
33
|
-
|
|
33
|
+
content: core.serialization.string(),
|
|
34
34
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
35
35
|
toolCallId: core.serialization.property("tool_call_id", core.serialization.string()),
|
|
36
|
-
content: core.serialization.string(),
|
|
37
36
|
toolName: core.serialization.property("tool_name", core.serialization.string().optional()),
|
|
38
37
|
toolType: core.serialization.property("tool_type", ToolType_1.ToolType.optional()),
|
|
38
|
+
type: core.serialization.stringLiteral("tool_response"),
|
|
39
39
|
});
|
|
@@ -7,8 +7,8 @@ import * as core from "../../../../core";
|
|
|
7
7
|
export declare const UserInput: core.serialization.ObjectSchema<serializers.empathicVoice.UserInput.Raw, Hume.empathicVoice.UserInput>;
|
|
8
8
|
export declare namespace UserInput {
|
|
9
9
|
interface Raw {
|
|
10
|
-
type: "user_input";
|
|
11
10
|
custom_session_id?: string | null;
|
|
12
11
|
text: string;
|
|
12
|
+
type: "user_input";
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -29,7 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.UserInput = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
exports.UserInput = core.serialization.object({
|
|
32
|
-
type: core.serialization.stringLiteral("user_input"),
|
|
33
32
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
34
33
|
text: core.serialization.string(),
|
|
34
|
+
type: core.serialization.stringLiteral("user_input"),
|
|
35
35
|
});
|
|
@@ -7,8 +7,8 @@ import * as core from "../../../../core";
|
|
|
7
7
|
export declare const UserInterruption: core.serialization.ObjectSchema<serializers.empathicVoice.UserInterruption.Raw, Hume.empathicVoice.UserInterruption>;
|
|
8
8
|
export declare namespace UserInterruption {
|
|
9
9
|
interface Raw {
|
|
10
|
-
type: "user_interruption";
|
|
11
10
|
custom_session_id?: string | null;
|
|
12
11
|
time: number;
|
|
12
|
+
type: "user_interruption";
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -29,7 +29,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.UserInterruption = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
exports.UserInterruption = core.serialization.object({
|
|
32
|
-
type: core.serialization.stringLiteral("user_interruption"),
|
|
33
32
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
34
33
|
time: core.serialization.number(),
|
|
34
|
+
type: core.serialization.stringLiteral("user_interruption"),
|
|
35
35
|
});
|
|
@@ -10,12 +10,12 @@ import { MillisecondInterval } from "./MillisecondInterval";
|
|
|
10
10
|
export declare const UserMessage: core.serialization.ObjectSchema<serializers.empathicVoice.UserMessage.Raw, Hume.empathicVoice.UserMessage>;
|
|
11
11
|
export declare namespace UserMessage {
|
|
12
12
|
interface Raw {
|
|
13
|
-
type: "user_message";
|
|
14
13
|
custom_session_id?: string | null;
|
|
14
|
+
from_text: boolean;
|
|
15
|
+
interim: boolean;
|
|
15
16
|
message: ChatMessage.Raw;
|
|
16
17
|
models: Inference.Raw;
|
|
17
18
|
time: MillisecondInterval.Raw;
|
|
18
|
-
|
|
19
|
-
interim: boolean;
|
|
19
|
+
type: "user_message";
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -32,11 +32,11 @@ const ChatMessage_1 = require("./ChatMessage");
|
|
|
32
32
|
const Inference_1 = require("./Inference");
|
|
33
33
|
const MillisecondInterval_1 = require("./MillisecondInterval");
|
|
34
34
|
exports.UserMessage = core.serialization.object({
|
|
35
|
-
type: core.serialization.stringLiteral("user_message"),
|
|
36
35
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
36
|
+
fromText: core.serialization.property("from_text", core.serialization.boolean()),
|
|
37
|
+
interim: core.serialization.boolean(),
|
|
37
38
|
message: ChatMessage_1.ChatMessage,
|
|
38
39
|
models: Inference_1.Inference,
|
|
39
40
|
time: MillisecondInterval_1.MillisecondInterval,
|
|
40
|
-
|
|
41
|
-
interim: core.serialization.boolean(),
|
|
41
|
+
type: core.serialization.stringLiteral("user_message"),
|
|
42
42
|
});
|
|
@@ -7,10 +7,11 @@ import * as core from "../../../../core";
|
|
|
7
7
|
export declare const WebSocketError: core.serialization.ObjectSchema<serializers.empathicVoice.WebSocketError.Raw, Hume.empathicVoice.WebSocketError>;
|
|
8
8
|
export declare namespace WebSocketError {
|
|
9
9
|
interface Raw {
|
|
10
|
-
type: "error";
|
|
11
|
-
custom_session_id?: string | null;
|
|
12
10
|
code: string;
|
|
13
|
-
|
|
11
|
+
custom_session_id?: string | null;
|
|
14
12
|
message: string;
|
|
13
|
+
request_id?: string | null;
|
|
14
|
+
slug: string;
|
|
15
|
+
type: "error";
|
|
15
16
|
}
|
|
16
17
|
}
|
|
@@ -29,9 +29,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
29
29
|
exports.WebSocketError = void 0;
|
|
30
30
|
const core = __importStar(require("../../../../core"));
|
|
31
31
|
exports.WebSocketError = core.serialization.object({
|
|
32
|
-
type: core.serialization.stringLiteral("error"),
|
|
33
|
-
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
34
32
|
code: core.serialization.string(),
|
|
35
|
-
|
|
33
|
+
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
36
34
|
message: core.serialization.string(),
|
|
35
|
+
requestId: core.serialization.property("request_id", core.serialization.string().optional()),
|
|
36
|
+
slug: core.serialization.string(),
|
|
37
|
+
type: core.serialization.stringLiteral("error"),
|
|
37
38
|
});
|
|
@@ -9,11 +9,11 @@ import { WebhookEventBase } from "./WebhookEventBase";
|
|
|
9
9
|
export declare const WebhookEventChatEnded: core.serialization.ObjectSchema<serializers.empathicVoice.WebhookEventChatEnded.Raw, Hume.empathicVoice.WebhookEventChatEnded>;
|
|
10
10
|
export declare namespace WebhookEventChatEnded {
|
|
11
11
|
interface Raw extends WebhookEventBase.Raw {
|
|
12
|
-
event_name?: "chat_ended" | null;
|
|
13
|
-
end_time: number;
|
|
14
|
-
duration_seconds: number;
|
|
15
|
-
end_reason: WebhookEventChatStatus.Raw;
|
|
16
12
|
caller_number?: string | null;
|
|
17
13
|
custom_session_id?: string | null;
|
|
14
|
+
duration_seconds: number;
|
|
15
|
+
end_reason: WebhookEventChatStatus.Raw;
|
|
16
|
+
end_time: number;
|
|
17
|
+
event_name?: "chat_ended" | null;
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -32,11 +32,11 @@ const WebhookEventChatStatus_1 = require("./WebhookEventChatStatus");
|
|
|
32
32
|
const WebhookEventBase_1 = require("./WebhookEventBase");
|
|
33
33
|
exports.WebhookEventChatEnded = core.serialization
|
|
34
34
|
.object({
|
|
35
|
-
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_ended").optional()),
|
|
36
|
-
endTime: core.serialization.property("end_time", core.serialization.number()),
|
|
37
|
-
durationSeconds: core.serialization.property("duration_seconds", core.serialization.number()),
|
|
38
|
-
endReason: core.serialization.property("end_reason", WebhookEventChatStatus_1.WebhookEventChatStatus),
|
|
39
35
|
callerNumber: core.serialization.property("caller_number", core.serialization.string().optional()),
|
|
40
36
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
37
|
+
durationSeconds: core.serialization.property("duration_seconds", core.serialization.number()),
|
|
38
|
+
endReason: core.serialization.property("end_reason", WebhookEventChatStatus_1.WebhookEventChatStatus),
|
|
39
|
+
endTime: core.serialization.property("end_time", core.serialization.number()),
|
|
40
|
+
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_ended").optional()),
|
|
41
41
|
})
|
|
42
42
|
.extend(WebhookEventBase_1.WebhookEventBase);
|
|
@@ -9,10 +9,10 @@ import { WebhookEventBase } from "./WebhookEventBase";
|
|
|
9
9
|
export declare const WebhookEventChatStarted: core.serialization.ObjectSchema<serializers.empathicVoice.WebhookEventChatStarted.Raw, Hume.empathicVoice.WebhookEventChatStarted>;
|
|
10
10
|
export declare namespace WebhookEventChatStarted {
|
|
11
11
|
interface Raw extends WebhookEventBase.Raw {
|
|
12
|
-
event_name?: "chat_started" | null;
|
|
13
|
-
start_time: number;
|
|
14
|
-
chat_start_type: WebhookEventChatStartType.Raw;
|
|
15
12
|
caller_number?: string | null;
|
|
13
|
+
chat_start_type: WebhookEventChatStartType.Raw;
|
|
16
14
|
custom_session_id?: string | null;
|
|
15
|
+
event_name?: "chat_started" | null;
|
|
16
|
+
start_time: number;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -32,10 +32,10 @@ const WebhookEventChatStartType_1 = require("./WebhookEventChatStartType");
|
|
|
32
32
|
const WebhookEventBase_1 = require("./WebhookEventBase");
|
|
33
33
|
exports.WebhookEventChatStarted = core.serialization
|
|
34
34
|
.object({
|
|
35
|
-
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_started").optional()),
|
|
36
|
-
startTime: core.serialization.property("start_time", core.serialization.number()),
|
|
37
|
-
chatStartType: core.serialization.property("chat_start_type", WebhookEventChatStartType_1.WebhookEventChatStartType),
|
|
38
35
|
callerNumber: core.serialization.property("caller_number", core.serialization.string().optional()),
|
|
36
|
+
chatStartType: core.serialization.property("chat_start_type", WebhookEventChatStartType_1.WebhookEventChatStartType),
|
|
39
37
|
customSessionId: core.serialization.property("custom_session_id", core.serialization.string().optional()),
|
|
38
|
+
eventName: core.serialization.property("event_name", core.serialization.stringLiteral("chat_started").optional()),
|
|
39
|
+
startTime: core.serialization.property("start_time", core.serialization.number()),
|
|
40
40
|
})
|
|
41
41
|
.extend(WebhookEventBase_1.WebhookEventBase);
|
|
@@ -1,118 +1,118 @@
|
|
|
1
|
+
export * from "./AssistantEnd";
|
|
2
|
+
export * from "./AssistantInput";
|
|
3
|
+
export * from "./AssistantMessage";
|
|
4
|
+
export * from "./AudioConfiguration";
|
|
5
|
+
export * from "./AudioInput";
|
|
6
|
+
export * from "./AudioOutput";
|
|
7
|
+
export * from "./BuiltInTool";
|
|
8
|
+
export * from "./BuiltinToolConfig";
|
|
9
|
+
export * from "./ChatMessageToolResult";
|
|
10
|
+
export * from "./ChatMessage";
|
|
11
|
+
export * from "./ChatMetadata";
|
|
12
|
+
export * from "./Context";
|
|
13
|
+
export * from "./ContextType";
|
|
14
|
+
export * from "./EmotionScores";
|
|
15
|
+
export * from "./Encoding";
|
|
16
|
+
export * from "./WebSocketError";
|
|
17
|
+
export * from "./ErrorLevel";
|
|
18
|
+
export * from "./Inference";
|
|
19
|
+
export * from "./MillisecondInterval";
|
|
20
|
+
export * from "./PauseAssistantMessage";
|
|
21
|
+
export * from "./ProsodyInference";
|
|
22
|
+
export * from "./ResumeAssistantMessage";
|
|
23
|
+
export * from "./Role";
|
|
24
|
+
export * from "./SessionSettingsVariablesValue";
|
|
25
|
+
export * from "./SessionSettings";
|
|
26
|
+
export * from "./Tool";
|
|
27
|
+
export * from "./ToolCallMessage";
|
|
28
|
+
export * from "./ToolErrorMessage";
|
|
29
|
+
export * from "./ToolResponseMessage";
|
|
30
|
+
export * from "./ToolType";
|
|
31
|
+
export * from "./UserInput";
|
|
32
|
+
export * from "./UserInterruption";
|
|
33
|
+
export * from "./UserMessage";
|
|
34
|
+
export * from "./JsonMessage";
|
|
35
|
+
export * from "./TtsInput";
|
|
36
|
+
export * from "./TextInput";
|
|
37
|
+
export * from "./FunctionCallResponseInput";
|
|
38
|
+
export * from "./HttpValidationError";
|
|
39
|
+
export * from "./ValidationErrorLocItem";
|
|
40
|
+
export * from "./ValidationError";
|
|
41
|
+
export * from "./WebhookEventBase";
|
|
42
|
+
export * from "./WebhookEvent";
|
|
43
|
+
export * from "./WebhookEventChatEnded";
|
|
44
|
+
export * from "./WebhookEventChatStartType";
|
|
45
|
+
export * from "./WebhookEventChatStarted";
|
|
46
|
+
export * from "./WebhookEventChatStatus";
|
|
1
47
|
export * from "./ErrorResponse";
|
|
48
|
+
export * from "./ReturnPagedUserDefinedTools";
|
|
2
49
|
export * from "./ReturnUserDefinedToolToolType";
|
|
3
50
|
export * from "./ReturnUserDefinedToolVersionType";
|
|
4
51
|
export * from "./ReturnUserDefinedTool";
|
|
52
|
+
export * from "./ReturnPagedPrompts";
|
|
5
53
|
export * from "./ReturnPromptVersionType";
|
|
6
54
|
export * from "./ReturnPrompt";
|
|
55
|
+
export * from "./ReturnPagedCustomVoices";
|
|
7
56
|
export * from "./PostedCustomVoiceBaseVoice";
|
|
8
57
|
export * from "./PostedCustomVoiceParameters";
|
|
9
58
|
export * from "./PostedCustomVoice";
|
|
10
59
|
export * from "./ReturnCustomVoiceBaseVoice";
|
|
11
60
|
export * from "./ReturnCustomVoiceParameters";
|
|
12
61
|
export * from "./ReturnCustomVoice";
|
|
13
|
-
export * from "./
|
|
14
|
-
export * from "./
|
|
62
|
+
export * from "./ReturnPagedConfigs";
|
|
63
|
+
export * from "./ReturnConfig";
|
|
64
|
+
export * from "./ReturnPagedChatsPaginationDirection";
|
|
65
|
+
export * from "./ReturnPagedChats";
|
|
66
|
+
export * from "./ReturnChatPagedEventsStatus";
|
|
67
|
+
export * from "./ReturnChatPagedEventsPaginationDirection";
|
|
68
|
+
export * from "./ReturnChatPagedEvents";
|
|
69
|
+
export * from "./ReturnChatAudioReconstructionStatus";
|
|
70
|
+
export * from "./ReturnChatAudioReconstruction";
|
|
71
|
+
export * from "./ReturnPagedChatGroupsPaginationDirection";
|
|
72
|
+
export * from "./ReturnPagedChatGroups";
|
|
73
|
+
export * from "./ReturnChatGroupPagedChatsPaginationDirection";
|
|
74
|
+
export * from "./ReturnChatGroupPagedChats";
|
|
75
|
+
export * from "./ReturnChatGroupPagedEventsPaginationDirection";
|
|
76
|
+
export * from "./ReturnChatGroupPagedEvents";
|
|
77
|
+
export * from "./ReturnChatGroupPagedAudioReconstructionsPaginationDirection";
|
|
78
|
+
export * from "./ReturnChatGroupPagedAudioReconstructions";
|
|
15
79
|
export * from "./PostedConfigPromptSpec";
|
|
16
|
-
export * from "./
|
|
17
|
-
export * from "./
|
|
18
|
-
export * from "./PostedEventMessageSpecs";
|
|
80
|
+
export * from "./PostedVoiceProvider";
|
|
81
|
+
export * from "./PostedVoice";
|
|
19
82
|
export * from "./PostedLanguageModelModelProvider";
|
|
20
83
|
export * from "./PostedLanguageModelModelResource";
|
|
21
84
|
export * from "./PostedLanguageModel";
|
|
22
|
-
export * from "./
|
|
85
|
+
export * from "./PostedEllmModel";
|
|
86
|
+
export * from "./PostedUserDefinedToolSpec";
|
|
87
|
+
export * from "./PostedBuiltinToolName";
|
|
88
|
+
export * from "./PostedBuiltinTool";
|
|
89
|
+
export * from "./PostedEventMessageSpecs";
|
|
23
90
|
export * from "./PostedTimeoutSpecsInactivity";
|
|
24
91
|
export * from "./PostedTimeoutSpecsMaxDuration";
|
|
25
92
|
export * from "./PostedTimeoutSpecs";
|
|
26
|
-
export * from "./PostedUserDefinedToolSpec";
|
|
27
|
-
export * from "./PostedVoiceProvider";
|
|
28
|
-
export * from "./PostedVoice";
|
|
29
93
|
export * from "./PostedWebhookEventType";
|
|
30
94
|
export * from "./PostedWebhookSpec";
|
|
31
|
-
export * from "./
|
|
32
|
-
export * from "./
|
|
33
|
-
export * from "./ReturnConfig";
|
|
34
|
-
export * from "./ReturnEllmModel";
|
|
35
|
-
export * from "./ReturnEventMessageSpec";
|
|
36
|
-
export * from "./ReturnEventMessageSpecs";
|
|
95
|
+
export * from "./ReturnVoiceProvider";
|
|
96
|
+
export * from "./ReturnVoice";
|
|
37
97
|
export * from "./ReturnLanguageModelModelProvider";
|
|
38
98
|
export * from "./ReturnLanguageModelModelResource";
|
|
39
99
|
export * from "./ReturnLanguageModel";
|
|
40
|
-
export * from "./
|
|
100
|
+
export * from "./ReturnEllmModel";
|
|
101
|
+
export * from "./ReturnBuiltinToolToolType";
|
|
102
|
+
export * from "./ReturnBuiltinTool";
|
|
103
|
+
export * from "./ReturnEventMessageSpecs";
|
|
41
104
|
export * from "./ReturnTimeoutSpecs";
|
|
42
|
-
export * from "./ReturnVoiceProvider";
|
|
43
|
-
export * from "./ReturnVoice";
|
|
44
105
|
export * from "./ReturnWebhookEventType";
|
|
45
106
|
export * from "./ReturnWebhookSpec";
|
|
46
|
-
export * from "./ReturnPagedUserDefinedTools";
|
|
47
|
-
export * from "./ReturnPagedPrompts";
|
|
48
|
-
export * from "./ReturnPagedCustomVoices";
|
|
49
|
-
export * from "./ReturnPagedConfigs";
|
|
50
107
|
export * from "./ReturnChatStatus";
|
|
51
108
|
export * from "./ReturnChat";
|
|
52
|
-
export * from "./ReturnConfigSpec";
|
|
53
|
-
export * from "./ReturnPagedChatsPaginationDirection";
|
|
54
|
-
export * from "./ReturnPagedChats";
|
|
55
109
|
export * from "./ReturnChatEventRole";
|
|
56
110
|
export * from "./ReturnChatEventType";
|
|
57
111
|
export * from "./ReturnChatEvent";
|
|
58
|
-
export * from "./
|
|
59
|
-
export * from "./ReturnChatPagedEventsPaginationDirection";
|
|
60
|
-
export * from "./ReturnChatPagedEvents";
|
|
61
|
-
export * from "./ReturnChatAudioReconstructionStatus";
|
|
62
|
-
export * from "./ReturnChatAudioReconstruction";
|
|
112
|
+
export * from "./ReturnConfigSpec";
|
|
63
113
|
export * from "./ReturnChatGroup";
|
|
64
|
-
export * from "./
|
|
65
|
-
export * from "./
|
|
66
|
-
export * from "./
|
|
67
|
-
export * from "./
|
|
68
|
-
export * from "./ReturnChatGroupPagedEventsPaginationDirection";
|
|
69
|
-
export * from "./ReturnChatGroupPagedEvents";
|
|
70
|
-
export * from "./ReturnChatGroupPagedAudioReconstructionsPaginationDirection";
|
|
71
|
-
export * from "./ReturnChatGroupPagedAudioReconstructions";
|
|
114
|
+
export * from "./PostedEventMessageSpec";
|
|
115
|
+
export * from "./PostedTimeoutSpec";
|
|
116
|
+
export * from "./ReturnEventMessageSpec";
|
|
117
|
+
export * from "./ReturnTimeoutSpec";
|
|
72
118
|
export * from "./PostedPromptSpec";
|
|
73
|
-
export * from "./AssistantInput";
|
|
74
|
-
export * from "./AudioConfiguration";
|
|
75
|
-
export * from "./AudioInput";
|
|
76
|
-
export * from "./BuiltInTool";
|
|
77
|
-
export * from "./BuiltinToolConfig";
|
|
78
|
-
export * from "./Context";
|
|
79
|
-
export * from "./ContextType";
|
|
80
|
-
export * from "./Encoding";
|
|
81
|
-
export * from "./ErrorLevel";
|
|
82
|
-
export * from "./PauseAssistantMessage";
|
|
83
|
-
export * from "./ResumeAssistantMessage";
|
|
84
|
-
export * from "./SessionSettingsVariablesValue";
|
|
85
|
-
export * from "./SessionSettings";
|
|
86
|
-
export * from "./Tool";
|
|
87
|
-
export * from "./ToolErrorMessage";
|
|
88
|
-
export * from "./ToolResponseMessage";
|
|
89
|
-
export * from "./ToolType";
|
|
90
|
-
export * from "./UserInput";
|
|
91
|
-
export * from "./AssistantEnd";
|
|
92
|
-
export * from "./AssistantMessage";
|
|
93
|
-
export * from "./AudioOutput";
|
|
94
|
-
export * from "./ChatMessageToolResult";
|
|
95
|
-
export * from "./ChatMessage";
|
|
96
|
-
export * from "./ChatMetadata";
|
|
97
|
-
export * from "./EmotionScores";
|
|
98
|
-
export * from "./WebSocketError";
|
|
99
|
-
export * from "./Inference";
|
|
100
|
-
export * from "./MillisecondInterval";
|
|
101
|
-
export * from "./ProsodyInference";
|
|
102
|
-
export * from "./Role";
|
|
103
|
-
export * from "./ToolCallMessage";
|
|
104
|
-
export * from "./UserInterruption";
|
|
105
|
-
export * from "./UserMessage";
|
|
106
|
-
export * from "./JsonMessage";
|
|
107
|
-
export * from "./TtsInput";
|
|
108
|
-
export * from "./TextInput";
|
|
109
|
-
export * from "./FunctionCallResponseInput";
|
|
110
|
-
export * from "./HttpValidationError";
|
|
111
|
-
export * from "./ValidationErrorLocItem";
|
|
112
|
-
export * from "./ValidationError";
|
|
113
|
-
export * from "./WebhookEventChatEnded";
|
|
114
|
-
export * from "./WebhookEventChatStartType";
|
|
115
|
-
export * from "./WebhookEventChatStarted";
|
|
116
|
-
export * from "./WebhookEventChatStatus";
|
|
117
|
-
export * from "./WebhookEvent";
|
|
118
|
-
export * from "./WebhookEventBase";
|