hume 0.9.10 → 0.9.11
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 +87 -26
- package/.mock/definition/empathic-voice/chat.yml +5 -1
- package/.mock/definition/empathic-voice/chatGroups.yml +6 -0
- package/.mock/definition/empathic-voice/chatWebhooks.yml +24 -13
- package/.mock/definition/empathic-voice/chats.yml +3 -0
- package/.mock/definition/empathic-voice/configs.yml +8 -1
- package/.mock/definition/empathic-voice/customVoices.yml +23 -12
- package/.mock/definition/empathic-voice/prompts.yml +29 -21
- package/.mock/definition/empathic-voice/tools.yml +34 -27
- package/.mock/definition/expression-measurement/batch/__package__.yml +23 -0
- package/.mock/definition/expression-measurement/stream/__package__.yml +0 -435
- package/.mock/definition/expression-measurement/v0StreamModels.yml +437 -0
- package/.mock/definition/tts/__package__.yml +394 -0
- package/.mock/definition/tts/voices.yml +47 -0
- package/.mock/fern.config.json +1 -1
- package/Client.d.ts +3 -0
- package/Client.js +5 -0
- 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/configs/client/requests/PostedConfig.d.ts +1 -1
- package/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +11 -6
- package/api/resources/empathicVoice/resources/customVoices/client/Client.js +17 -12
- package/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +6 -0
- package/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +11 -11
- package/api/resources/empathicVoice/resources/prompts/client/Client.js +21 -21
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
- package/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
- package/api/resources/empathicVoice/resources/tools/client/Client.d.ts +9 -9
- package/api/resources/empathicVoice/resources/tools/client/Client.js +18 -18
- package/api/resources/empathicVoice/types/Context.d.ts +2 -2
- package/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
- package/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
- package/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
- package/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +6 -2
- package/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
- package/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
- package/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +6 -2
- package/api/resources/empathicVoice/types/SessionSettings.d.ts +7 -7
- package/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +5 -0
- package/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +2 -2
- package/api/resources/index.d.ts +2 -1
- package/api/resources/index.js +3 -2
- package/api/resources/tts/client/Client.d.ts +86 -0
- package/api/resources/tts/client/Client.js +218 -0
- package/api/resources/tts/client/index.d.ts +1 -0
- package/api/resources/tts/client/index.js +2 -0
- package/api/resources/tts/errors/UnprocessableEntityError.d.ts +8 -0
- package/api/resources/tts/errors/UnprocessableEntityError.js +41 -0
- package/api/resources/tts/errors/index.d.ts +1 -0
- package/api/resources/tts/errors/index.js +17 -0
- package/api/resources/tts/index.d.ts +4 -0
- package/api/resources/tts/index.js +20 -0
- package/api/resources/tts/resources/index.d.ts +2 -0
- package/api/resources/tts/resources/index.js +31 -0
- package/api/resources/tts/resources/voices/client/Client.d.ts +43 -0
- package/api/resources/tts/resources/voices/client/Client.js +126 -0
- package/api/resources/tts/resources/voices/client/index.d.ts +1 -0
- package/api/resources/tts/resources/voices/client/index.js +17 -0
- package/api/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +16 -0
- package/api/resources/tts/resources/voices/client/requests/PostedVoice.js +5 -0
- package/api/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
- package/api/resources/tts/resources/voices/client/requests/index.js +2 -0
- package/api/resources/tts/resources/voices/index.d.ts +1 -0
- package/api/resources/tts/resources/voices/index.js +17 -0
- package/api/resources/tts/types/AudioEncoding.d.ts +10 -0
- package/api/resources/tts/types/AudioEncoding.js +5 -0
- package/api/resources/tts/types/AudioFormatType.d.ts +9 -0
- package/api/resources/tts/types/AudioFormatType.js +11 -0
- package/api/resources/tts/types/Format.d.ts +19 -0
- package/api/resources/tts/types/Format.js +5 -0
- package/api/resources/tts/types/FormatMp3.d.ts +5 -0
- package/api/resources/tts/types/FormatMp3.js +5 -0
- package/api/resources/tts/types/FormatPcm.d.ts +5 -0
- package/api/resources/tts/types/FormatPcm.js +5 -0
- package/api/resources/tts/types/FormatWav.d.ts +5 -0
- package/api/resources/tts/types/FormatWav.js +5 -0
- package/api/resources/tts/types/HttpValidationError.d.ts +7 -0
- package/api/resources/tts/types/HttpValidationError.js +5 -0
- package/api/resources/tts/types/PostedContext.d.ts +8 -0
- package/api/resources/tts/types/PostedContext.js +5 -0
- package/api/resources/tts/types/PostedContextWithGenerationId.d.ts +7 -0
- package/api/resources/tts/types/PostedContextWithGenerationId.js +5 -0
- package/api/resources/tts/types/PostedContextWithUtterances.d.ts +7 -0
- package/api/resources/tts/types/PostedContextWithUtterances.js +5 -0
- package/api/resources/tts/types/PostedTts.d.ts +14 -0
- package/api/resources/tts/types/PostedTts.js +5 -0
- package/api/resources/tts/types/PostedTtsRecord.d.ts +11 -0
- package/api/resources/tts/types/PostedTtsRecord.js +5 -0
- package/api/resources/tts/types/PostedUtterance.d.ts +22 -0
- package/api/resources/tts/types/PostedUtterance.js +5 -0
- package/api/resources/tts/types/PostedUtteranceVoice.d.ts +5 -0
- package/api/resources/tts/types/PostedUtteranceVoice.js +5 -0
- package/api/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +20 -0
- package/api/resources/tts/types/PostedUtteranceVoiceWithId.js +5 -0
- package/api/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +20 -0
- package/api/resources/tts/types/PostedUtteranceVoiceWithName.js +5 -0
- package/api/resources/tts/types/ReturnGeneration.d.ts +17 -0
- package/api/resources/tts/types/ReturnGeneration.js +5 -0
- package/api/resources/tts/types/ReturnTts.d.ts +9 -0
- package/api/resources/tts/types/ReturnTts.js +5 -0
- package/api/resources/tts/types/ReturnVoice.d.ts +9 -0
- package/api/resources/tts/types/ReturnVoice.js +5 -0
- package/api/resources/tts/types/Snippet.d.ts +11 -0
- package/api/resources/tts/types/Snippet.js +5 -0
- package/api/resources/tts/types/ValidationError.d.ts +9 -0
- package/api/resources/tts/types/ValidationError.js +5 -0
- package/api/resources/tts/types/ValidationErrorLocItem.d.ts +4 -0
- package/api/resources/tts/types/ValidationErrorLocItem.js +5 -0
- package/api/resources/tts/types/VoiceProvider.d.ts +8 -0
- package/api/resources/tts/types/VoiceProvider.js +10 -0
- package/api/resources/tts/types/index.d.ts +23 -0
- package/api/resources/tts/types/index.js +39 -0
- package/dist/Client.d.ts +3 -0
- package/dist/Client.js +5 -0
- 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/configs/client/requests/PostedConfig.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.d.ts +11 -6
- package/dist/api/resources/empathicVoice/resources/customVoices/client/Client.js +17 -12
- package/dist/api/resources/empathicVoice/resources/customVoices/client/requests/PostedCustomVoiceName.d.ts +6 -0
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.d.ts +11 -11
- package/dist/api/resources/empathicVoice/resources/prompts/client/Client.js +21 -21
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPrompt.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/prompts/client/requests/PostedPromptVersion.d.ts +1 -1
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.d.ts +9 -9
- package/dist/api/resources/empathicVoice/resources/tools/client/Client.js +18 -18
- package/dist/api/resources/empathicVoice/types/Context.d.ts +2 -2
- package/dist/api/resources/empathicVoice/types/PostedBuiltinTool.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/PostedBuiltinToolName.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/PostedCustomVoice.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/PostedWebhookSpec.d.ts +6 -2
- package/dist/api/resources/empathicVoice/types/ReturnConfig.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ReturnPrompt.d.ts +1 -1
- package/dist/api/resources/empathicVoice/types/ReturnWebhookSpec.d.ts +6 -2
- package/dist/api/resources/empathicVoice/types/SessionSettings.d.ts +7 -7
- package/dist/api/resources/empathicVoice/types/WebhookEventChatEnded.d.ts +5 -0
- package/dist/api/resources/empathicVoice/types/WebhookEventChatStarted.d.ts +2 -2
- package/dist/api/resources/index.d.ts +2 -1
- package/dist/api/resources/index.js +3 -2
- package/dist/api/resources/tts/client/Client.d.ts +86 -0
- package/dist/api/resources/tts/client/Client.js +218 -0
- package/dist/api/resources/tts/client/index.d.ts +1 -0
- package/dist/api/resources/tts/client/index.js +2 -0
- package/dist/api/resources/tts/errors/UnprocessableEntityError.d.ts +8 -0
- package/dist/api/resources/tts/errors/UnprocessableEntityError.js +41 -0
- package/dist/api/resources/tts/errors/index.d.ts +1 -0
- package/dist/api/resources/tts/errors/index.js +17 -0
- package/dist/api/resources/tts/index.d.ts +4 -0
- package/dist/api/resources/tts/index.js +20 -0
- package/dist/api/resources/tts/resources/index.d.ts +2 -0
- package/dist/api/resources/tts/resources/index.js +31 -0
- package/dist/api/resources/tts/resources/voices/client/Client.d.ts +43 -0
- package/dist/api/resources/tts/resources/voices/client/Client.js +126 -0
- package/dist/api/resources/tts/resources/voices/client/index.d.ts +1 -0
- package/dist/api/resources/tts/resources/voices/client/index.js +17 -0
- package/dist/api/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +16 -0
- package/dist/api/resources/tts/resources/voices/client/requests/PostedVoice.js +5 -0
- package/dist/api/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
- package/dist/api/resources/tts/resources/voices/client/requests/index.js +2 -0
- package/dist/api/resources/tts/resources/voices/index.d.ts +1 -0
- package/dist/api/resources/tts/resources/voices/index.js +17 -0
- package/dist/api/resources/tts/types/AudioEncoding.d.ts +10 -0
- package/dist/api/resources/tts/types/AudioEncoding.js +5 -0
- package/dist/api/resources/tts/types/AudioFormatType.d.ts +9 -0
- package/dist/api/resources/tts/types/AudioFormatType.js +11 -0
- package/dist/api/resources/tts/types/Format.d.ts +19 -0
- package/dist/api/resources/tts/types/Format.js +5 -0
- package/dist/api/resources/tts/types/FormatMp3.d.ts +5 -0
- package/dist/api/resources/tts/types/FormatMp3.js +5 -0
- package/dist/api/resources/tts/types/FormatPcm.d.ts +5 -0
- package/dist/api/resources/tts/types/FormatPcm.js +5 -0
- package/dist/api/resources/tts/types/FormatWav.d.ts +5 -0
- package/dist/api/resources/tts/types/FormatWav.js +5 -0
- package/dist/api/resources/tts/types/HttpValidationError.d.ts +7 -0
- package/dist/api/resources/tts/types/HttpValidationError.js +5 -0
- package/dist/api/resources/tts/types/PostedContext.d.ts +8 -0
- package/dist/api/resources/tts/types/PostedContext.js +5 -0
- package/dist/api/resources/tts/types/PostedContextWithGenerationId.d.ts +7 -0
- package/dist/api/resources/tts/types/PostedContextWithGenerationId.js +5 -0
- package/dist/api/resources/tts/types/PostedContextWithUtterances.d.ts +7 -0
- package/dist/api/resources/tts/types/PostedContextWithUtterances.js +5 -0
- package/dist/api/resources/tts/types/PostedTts.d.ts +14 -0
- package/dist/api/resources/tts/types/PostedTts.js +5 -0
- package/dist/api/resources/tts/types/PostedTtsRecord.d.ts +11 -0
- package/dist/api/resources/tts/types/PostedTtsRecord.js +5 -0
- package/dist/api/resources/tts/types/PostedUtterance.d.ts +22 -0
- package/dist/api/resources/tts/types/PostedUtterance.js +5 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoice.d.ts +5 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoice.js +5 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +20 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoiceWithId.js +5 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +20 -0
- package/dist/api/resources/tts/types/PostedUtteranceVoiceWithName.js +5 -0
- package/dist/api/resources/tts/types/ReturnGeneration.d.ts +17 -0
- package/dist/api/resources/tts/types/ReturnGeneration.js +5 -0
- package/dist/api/resources/tts/types/ReturnTts.d.ts +9 -0
- package/dist/api/resources/tts/types/ReturnTts.js +5 -0
- package/dist/api/resources/tts/types/ReturnVoice.d.ts +9 -0
- package/dist/api/resources/tts/types/ReturnVoice.js +5 -0
- package/dist/api/resources/tts/types/Snippet.d.ts +11 -0
- package/dist/api/resources/tts/types/Snippet.js +5 -0
- package/dist/api/resources/tts/types/ValidationError.d.ts +9 -0
- package/dist/api/resources/tts/types/ValidationError.js +5 -0
- package/dist/api/resources/tts/types/ValidationErrorLocItem.d.ts +4 -0
- package/dist/api/resources/tts/types/ValidationErrorLocItem.js +5 -0
- package/dist/api/resources/tts/types/VoiceProvider.d.ts +8 -0
- package/dist/api/resources/tts/types/VoiceProvider.js +10 -0
- package/dist/api/resources/tts/types/index.d.ts +23 -0
- package/dist/api/resources/tts/types/index.js +39 -0
- package/dist/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.d.ts → createPromptVersion.d.ts} +1 -1
- package/dist/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
- package/dist/serialization/resources/empathicVoice/resources/prompts/client/index.js +2 -2
- package/dist/serialization/resources/index.d.ts +2 -1
- package/dist/serialization/resources/index.js +3 -2
- package/dist/serialization/resources/tts/index.d.ts +2 -0
- package/dist/serialization/resources/tts/index.js +18 -0
- package/dist/serialization/resources/tts/resources/index.d.ts +2 -0
- package/dist/serialization/resources/tts/resources/index.js +31 -0
- package/dist/serialization/resources/tts/resources/voices/client/index.d.ts +1 -0
- package/dist/serialization/resources/tts/resources/voices/client/index.js +17 -0
- package/dist/serialization/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +13 -0
- package/dist/serialization/resources/tts/resources/voices/client/requests/PostedVoice.js +34 -0
- package/dist/serialization/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/tts/resources/voices/client/requests/index.js +5 -0
- package/dist/serialization/resources/tts/resources/voices/index.d.ts +1 -0
- package/dist/serialization/resources/tts/resources/voices/index.js +17 -0
- package/dist/serialization/resources/tts/types/AudioEncoding.d.ts +14 -0
- package/dist/serialization/resources/tts/types/AudioEncoding.js +35 -0
- package/dist/serialization/resources/tts/types/AudioFormatType.d.ts +10 -0
- package/dist/serialization/resources/tts/types/AudioFormatType.js +31 -0
- package/dist/serialization/resources/tts/types/Format.d.ts +22 -0
- package/dist/serialization/resources/tts/types/Format.js +43 -0
- package/dist/serialization/resources/tts/types/FormatMp3.d.ts +11 -0
- package/dist/serialization/resources/tts/types/FormatMp3.js +31 -0
- package/dist/serialization/resources/tts/types/FormatPcm.d.ts +11 -0
- package/dist/serialization/resources/tts/types/FormatPcm.js +31 -0
- package/dist/serialization/resources/tts/types/FormatWav.d.ts +11 -0
- package/dist/serialization/resources/tts/types/FormatWav.js +31 -0
- package/dist/serialization/resources/tts/types/HttpValidationError.d.ts +13 -0
- package/dist/serialization/resources/tts/types/HttpValidationError.js +34 -0
- package/dist/serialization/resources/tts/types/PostedContext.d.ts +12 -0
- package/dist/serialization/resources/tts/types/PostedContext.js +33 -0
- package/dist/serialization/resources/tts/types/PostedContextWithGenerationId.d.ts +12 -0
- package/dist/serialization/resources/tts/types/PostedContextWithGenerationId.js +33 -0
- package/dist/serialization/resources/tts/types/PostedContextWithUtterances.d.ts +13 -0
- package/dist/serialization/resources/tts/types/PostedContextWithUtterances.js +34 -0
- package/dist/serialization/resources/tts/types/PostedTts.d.ts +18 -0
- package/dist/serialization/resources/tts/types/PostedTts.js +39 -0
- package/dist/serialization/resources/tts/types/PostedTtsRecord.d.ts +17 -0
- package/dist/serialization/resources/tts/types/PostedTtsRecord.js +38 -0
- package/dist/serialization/resources/tts/types/PostedUtterance.d.ts +15 -0
- package/dist/serialization/resources/tts/types/PostedUtterance.js +36 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoice.d.ts +12 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoice.js +33 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +14 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithId.js +35 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +14 -0
- package/dist/serialization/resources/tts/types/PostedUtteranceVoiceWithName.js +35 -0
- package/dist/serialization/resources/tts/types/ReturnGeneration.d.ts +19 -0
- package/dist/serialization/resources/tts/types/ReturnGeneration.js +40 -0
- package/dist/serialization/resources/tts/types/ReturnTts.d.ts +14 -0
- package/dist/serialization/resources/tts/types/ReturnTts.js +35 -0
- package/dist/serialization/resources/tts/types/ReturnVoice.d.ts +13 -0
- package/dist/serialization/resources/tts/types/ReturnVoice.js +34 -0
- package/dist/serialization/resources/tts/types/Snippet.d.ts +14 -0
- package/dist/serialization/resources/tts/types/Snippet.js +35 -0
- package/dist/serialization/resources/tts/types/ValidationError.d.ts +15 -0
- package/dist/serialization/resources/tts/types/ValidationError.js +36 -0
- package/dist/serialization/resources/tts/types/ValidationErrorLocItem.d.ts +10 -0
- package/dist/serialization/resources/tts/types/ValidationErrorLocItem.js +31 -0
- package/dist/serialization/resources/tts/types/VoiceProvider.d.ts +10 -0
- package/dist/serialization/resources/tts/types/VoiceProvider.js +31 -0
- package/dist/serialization/resources/tts/types/index.d.ts +23 -0
- package/dist/serialization/resources/tts/types/index.js +39 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/reference.md +489 -178
- package/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.d.ts → createPromptVersion.d.ts} +1 -1
- package/serialization/resources/empathicVoice/resources/prompts/client/index.d.ts +1 -1
- package/serialization/resources/empathicVoice/resources/prompts/client/index.js +2 -2
- package/serialization/resources/index.d.ts +2 -1
- package/serialization/resources/index.js +3 -2
- package/serialization/resources/tts/index.d.ts +2 -0
- package/serialization/resources/tts/index.js +18 -0
- package/serialization/resources/tts/resources/index.d.ts +2 -0
- package/serialization/resources/tts/resources/index.js +31 -0
- package/serialization/resources/tts/resources/voices/client/index.d.ts +1 -0
- package/serialization/resources/tts/resources/voices/client/index.js +17 -0
- package/serialization/resources/tts/resources/voices/client/requests/PostedVoice.d.ts +13 -0
- package/serialization/resources/tts/resources/voices/client/requests/PostedVoice.js +34 -0
- package/serialization/resources/tts/resources/voices/client/requests/index.d.ts +1 -0
- package/serialization/resources/tts/resources/voices/client/requests/index.js +5 -0
- package/serialization/resources/tts/resources/voices/index.d.ts +1 -0
- package/serialization/resources/tts/resources/voices/index.js +17 -0
- package/serialization/resources/tts/types/AudioEncoding.d.ts +14 -0
- package/serialization/resources/tts/types/AudioEncoding.js +35 -0
- package/serialization/resources/tts/types/AudioFormatType.d.ts +10 -0
- package/serialization/resources/tts/types/AudioFormatType.js +31 -0
- package/serialization/resources/tts/types/Format.d.ts +22 -0
- package/serialization/resources/tts/types/Format.js +43 -0
- package/serialization/resources/tts/types/FormatMp3.d.ts +11 -0
- package/serialization/resources/tts/types/FormatMp3.js +31 -0
- package/serialization/resources/tts/types/FormatPcm.d.ts +11 -0
- package/serialization/resources/tts/types/FormatPcm.js +31 -0
- package/serialization/resources/tts/types/FormatWav.d.ts +11 -0
- package/serialization/resources/tts/types/FormatWav.js +31 -0
- package/serialization/resources/tts/types/HttpValidationError.d.ts +13 -0
- package/serialization/resources/tts/types/HttpValidationError.js +34 -0
- package/serialization/resources/tts/types/PostedContext.d.ts +12 -0
- package/serialization/resources/tts/types/PostedContext.js +33 -0
- package/serialization/resources/tts/types/PostedContextWithGenerationId.d.ts +12 -0
- package/serialization/resources/tts/types/PostedContextWithGenerationId.js +33 -0
- package/serialization/resources/tts/types/PostedContextWithUtterances.d.ts +13 -0
- package/serialization/resources/tts/types/PostedContextWithUtterances.js +34 -0
- package/serialization/resources/tts/types/PostedTts.d.ts +18 -0
- package/serialization/resources/tts/types/PostedTts.js +39 -0
- package/serialization/resources/tts/types/PostedTtsRecord.d.ts +17 -0
- package/serialization/resources/tts/types/PostedTtsRecord.js +38 -0
- package/serialization/resources/tts/types/PostedUtterance.d.ts +15 -0
- package/serialization/resources/tts/types/PostedUtterance.js +36 -0
- package/serialization/resources/tts/types/PostedUtteranceVoice.d.ts +12 -0
- package/serialization/resources/tts/types/PostedUtteranceVoice.js +33 -0
- package/serialization/resources/tts/types/PostedUtteranceVoiceWithId.d.ts +14 -0
- package/serialization/resources/tts/types/PostedUtteranceVoiceWithId.js +35 -0
- package/serialization/resources/tts/types/PostedUtteranceVoiceWithName.d.ts +14 -0
- package/serialization/resources/tts/types/PostedUtteranceVoiceWithName.js +35 -0
- package/serialization/resources/tts/types/ReturnGeneration.d.ts +19 -0
- package/serialization/resources/tts/types/ReturnGeneration.js +40 -0
- package/serialization/resources/tts/types/ReturnTts.d.ts +14 -0
- package/serialization/resources/tts/types/ReturnTts.js +35 -0
- package/serialization/resources/tts/types/ReturnVoice.d.ts +13 -0
- package/serialization/resources/tts/types/ReturnVoice.js +34 -0
- package/serialization/resources/tts/types/Snippet.d.ts +14 -0
- package/serialization/resources/tts/types/Snippet.js +35 -0
- package/serialization/resources/tts/types/ValidationError.d.ts +15 -0
- package/serialization/resources/tts/types/ValidationError.js +36 -0
- package/serialization/resources/tts/types/ValidationErrorLocItem.d.ts +10 -0
- package/serialization/resources/tts/types/ValidationErrorLocItem.js +31 -0
- package/serialization/resources/tts/types/VoiceProvider.d.ts +10 -0
- package/serialization/resources/tts/types/VoiceProvider.js +31 -0
- package/serialization/resources/tts/types/index.d.ts +23 -0
- package/serialization/resources/tts/types/index.js +39 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
- /package/dist/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.js → createPromptVersion.js} +0 -0
- /package/serialization/resources/empathicVoice/resources/prompts/client/{createPromptVerison.js → createPromptVersion.js} +0 -0
|
@@ -12,8 +12,9 @@ service:
|
|
|
12
12
|
Fetches a paginated list of **Custom Voices**.
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
Refer to our [voices
|
|
16
|
-
for
|
|
15
|
+
Refer to our [voices
|
|
16
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
17
|
+
details on creating a custom voice.
|
|
17
18
|
source:
|
|
18
19
|
openapi: stenographer-openapi.json
|
|
19
20
|
display-name: List custom voices
|
|
@@ -47,6 +48,7 @@ service:
|
|
|
47
48
|
response:
|
|
48
49
|
docs: Success
|
|
49
50
|
type: root.ReturnPagedCustomVoices
|
|
51
|
+
status-code: 200
|
|
50
52
|
errors:
|
|
51
53
|
- root.BadRequestError
|
|
52
54
|
examples:
|
|
@@ -73,8 +75,9 @@ service:
|
|
|
73
75
|
configuration](/reference/empathic-voice-interface-evi/configs/create-config).
|
|
74
76
|
|
|
75
77
|
|
|
76
|
-
Refer to our [voices
|
|
77
|
-
for
|
|
78
|
+
Refer to our [voices
|
|
79
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
80
|
+
details on creating a custom voice.
|
|
78
81
|
source:
|
|
79
82
|
openapi: stenographer-openapi.json
|
|
80
83
|
display-name: Create custom voice
|
|
@@ -84,6 +87,7 @@ service:
|
|
|
84
87
|
response:
|
|
85
88
|
docs: Created
|
|
86
89
|
type: root.ReturnCustomVoice
|
|
90
|
+
status-code: 201
|
|
87
91
|
errors:
|
|
88
92
|
- root.BadRequestError
|
|
89
93
|
examples:
|
|
@@ -119,8 +123,9 @@ service:
|
|
|
119
123
|
Fetches a specific **Custom Voice** by ID.
|
|
120
124
|
|
|
121
125
|
|
|
122
|
-
Refer to our [voices
|
|
123
|
-
for
|
|
126
|
+
Refer to our [voices
|
|
127
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
128
|
+
details on creating a custom voice.
|
|
124
129
|
source:
|
|
125
130
|
openapi: stenographer-openapi.json
|
|
126
131
|
path-parameters:
|
|
@@ -131,6 +136,7 @@ service:
|
|
|
131
136
|
response:
|
|
132
137
|
docs: Success
|
|
133
138
|
type: root.ReturnCustomVoice
|
|
139
|
+
status-code: 200
|
|
134
140
|
errors:
|
|
135
141
|
- root.BadRequestError
|
|
136
142
|
examples:
|
|
@@ -165,8 +171,9 @@ service:
|
|
|
165
171
|
Voice**.
|
|
166
172
|
|
|
167
173
|
|
|
168
|
-
Refer to our [voices
|
|
169
|
-
for
|
|
174
|
+
Refer to our [voices
|
|
175
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
176
|
+
details on creating a custom voice.
|
|
170
177
|
source:
|
|
171
178
|
openapi: stenographer-openapi.json
|
|
172
179
|
path-parameters:
|
|
@@ -180,6 +187,7 @@ service:
|
|
|
180
187
|
response:
|
|
181
188
|
docs: Created
|
|
182
189
|
type: root.ReturnCustomVoice
|
|
190
|
+
status-code: 201
|
|
183
191
|
errors:
|
|
184
192
|
- root.BadRequestError
|
|
185
193
|
examples:
|
|
@@ -217,8 +225,9 @@ service:
|
|
|
217
225
|
Deletes a **Custom Voice** and its versions.
|
|
218
226
|
|
|
219
227
|
|
|
220
|
-
Refer to our [voices
|
|
221
|
-
for
|
|
228
|
+
Refer to our [voices
|
|
229
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
230
|
+
details on creating a custom voice.
|
|
222
231
|
source:
|
|
223
232
|
openapi: stenographer-openapi.json
|
|
224
233
|
path-parameters:
|
|
@@ -239,8 +248,9 @@ service:
|
|
|
239
248
|
Updates the name of a **Custom Voice**.
|
|
240
249
|
|
|
241
250
|
|
|
242
|
-
Refer to our [voices
|
|
243
|
-
for
|
|
251
|
+
Refer to our [voices
|
|
252
|
+
guide](/docs/empathic-voice-interface-evi/configuration/voices) for
|
|
253
|
+
details on creating a custom voice.
|
|
244
254
|
source:
|
|
245
255
|
openapi: stenographer-openapi.json
|
|
246
256
|
path-parameters:
|
|
@@ -262,6 +272,7 @@ service:
|
|
|
262
272
|
response:
|
|
263
273
|
docs: Success
|
|
264
274
|
type: text
|
|
275
|
+
status-code: 200
|
|
265
276
|
errors:
|
|
266
277
|
- root.BadRequestError
|
|
267
278
|
source:
|
|
@@ -13,8 +13,8 @@ service:
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
See our [prompting
|
|
16
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
17
|
-
crafting your system prompt.
|
|
16
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
17
|
+
on crafting your system prompt.
|
|
18
18
|
pagination:
|
|
19
19
|
offset: $request.page_number
|
|
20
20
|
results: $response.prompts_page
|
|
@@ -54,6 +54,7 @@ service:
|
|
|
54
54
|
response:
|
|
55
55
|
docs: Success
|
|
56
56
|
type: root.ReturnPagedPrompts
|
|
57
|
+
status-code: 200
|
|
57
58
|
errors:
|
|
58
59
|
- root.BadRequestError
|
|
59
60
|
examples:
|
|
@@ -106,8 +107,8 @@ service:
|
|
|
106
107
|
|
|
107
108
|
|
|
108
109
|
See our [prompting
|
|
109
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
110
|
-
crafting your system prompt.
|
|
110
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
111
|
+
on crafting your system prompt.
|
|
111
112
|
source:
|
|
112
113
|
openapi: stenographer-openapi.json
|
|
113
114
|
display-name: Create prompt
|
|
@@ -136,11 +137,12 @@ service:
|
|
|
136
137
|
|
|
137
138
|
|
|
138
139
|
For help writing a system prompt, see our [Prompting
|
|
139
|
-
Guide](/docs/empathic-voice-interface-evi/prompting).
|
|
140
|
+
Guide](/docs/empathic-voice-interface-evi/guides/prompting).
|
|
140
141
|
content-type: application/json
|
|
141
142
|
response:
|
|
142
143
|
docs: Created
|
|
143
144
|
type: optional<root.ReturnPrompt>
|
|
145
|
+
status-code: 201
|
|
144
146
|
errors:
|
|
145
147
|
- root.BadRequestError
|
|
146
148
|
examples:
|
|
@@ -158,6 +160,7 @@ service:
|
|
|
158
160
|
id: af699d45-2985-42cc-91b9-af9e5da3bac5
|
|
159
161
|
version: 0
|
|
160
162
|
version_type: FIXED
|
|
163
|
+
version_description: null
|
|
161
164
|
name: Weather Assistant Prompt
|
|
162
165
|
created_on: 1722633247488
|
|
163
166
|
modified_on: 1722633247488
|
|
@@ -177,8 +180,8 @@ service:
|
|
|
177
180
|
|
|
178
181
|
|
|
179
182
|
See our [prompting
|
|
180
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
181
|
-
crafting your system prompt.
|
|
183
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
184
|
+
on crafting your system prompt.
|
|
182
185
|
source:
|
|
183
186
|
openapi: stenographer-openapi.json
|
|
184
187
|
path-parameters:
|
|
@@ -219,6 +222,7 @@ service:
|
|
|
219
222
|
response:
|
|
220
223
|
docs: Success
|
|
221
224
|
type: root.ReturnPagedPrompts
|
|
225
|
+
status-code: 200
|
|
222
226
|
errors:
|
|
223
227
|
- root.BadRequestError
|
|
224
228
|
examples:
|
|
@@ -244,7 +248,7 @@ service:
|
|
|
244
248
|
technical jargon. Provide temperature, precipitation, wind
|
|
245
249
|
conditions, and any weather alerts. Include helpful tips if
|
|
246
250
|
severe weather is expected.</role>
|
|
247
|
-
create-prompt-
|
|
251
|
+
create-prompt-version:
|
|
248
252
|
path: /v0/evi/prompts/{id}
|
|
249
253
|
method: POST
|
|
250
254
|
auth: true
|
|
@@ -253,8 +257,8 @@ service:
|
|
|
253
257
|
|
|
254
258
|
|
|
255
259
|
See our [prompting
|
|
256
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
257
|
-
crafting your system prompt.
|
|
260
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
261
|
+
on crafting your system prompt.
|
|
258
262
|
source:
|
|
259
263
|
openapi: stenographer-openapi.json
|
|
260
264
|
path-parameters:
|
|
@@ -285,11 +289,12 @@ service:
|
|
|
285
289
|
|
|
286
290
|
|
|
287
291
|
For help writing a system prompt, see our [Prompting
|
|
288
|
-
Guide](/docs/empathic-voice-interface-evi/prompting).
|
|
292
|
+
Guide](/docs/empathic-voice-interface-evi/guides/prompting).
|
|
289
293
|
content-type: application/json
|
|
290
294
|
response:
|
|
291
295
|
docs: Created
|
|
292
296
|
type: optional<root.ReturnPrompt>
|
|
297
|
+
status-code: 201
|
|
293
298
|
errors:
|
|
294
299
|
- root.BadRequestError
|
|
295
300
|
examples:
|
|
@@ -329,8 +334,8 @@ service:
|
|
|
329
334
|
|
|
330
335
|
|
|
331
336
|
See our [prompting
|
|
332
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
333
|
-
crafting your system prompt.
|
|
337
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
338
|
+
on crafting your system prompt.
|
|
334
339
|
source:
|
|
335
340
|
openapi: stenographer-openapi.json
|
|
336
341
|
path-parameters:
|
|
@@ -352,8 +357,8 @@ service:
|
|
|
352
357
|
|
|
353
358
|
|
|
354
359
|
See our [prompting
|
|
355
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
356
|
-
crafting your system prompt.
|
|
360
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
361
|
+
on crafting your system prompt.
|
|
357
362
|
source:
|
|
358
363
|
openapi: stenographer-openapi.json
|
|
359
364
|
path-parameters:
|
|
@@ -372,6 +377,7 @@ service:
|
|
|
372
377
|
response:
|
|
373
378
|
docs: Success
|
|
374
379
|
type: text
|
|
380
|
+
status-code: 200
|
|
375
381
|
errors:
|
|
376
382
|
- root.BadRequestError
|
|
377
383
|
examples:
|
|
@@ -388,8 +394,8 @@ service:
|
|
|
388
394
|
|
|
389
395
|
|
|
390
396
|
See our [prompting
|
|
391
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
392
|
-
crafting your system prompt.
|
|
397
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
398
|
+
on crafting your system prompt.
|
|
393
399
|
source:
|
|
394
400
|
openapi: stenographer-openapi.json
|
|
395
401
|
path-parameters:
|
|
@@ -415,6 +421,7 @@ service:
|
|
|
415
421
|
response:
|
|
416
422
|
docs: Success
|
|
417
423
|
type: optional<root.ReturnPrompt>
|
|
424
|
+
status-code: 200
|
|
418
425
|
errors:
|
|
419
426
|
- root.BadRequestError
|
|
420
427
|
examples:
|
|
@@ -446,8 +453,8 @@ service:
|
|
|
446
453
|
|
|
447
454
|
|
|
448
455
|
See our [prompting
|
|
449
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
450
|
-
crafting your system prompt.
|
|
456
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
457
|
+
on crafting your system prompt.
|
|
451
458
|
source:
|
|
452
459
|
openapi: stenographer-openapi.json
|
|
453
460
|
path-parameters:
|
|
@@ -485,8 +492,8 @@ service:
|
|
|
485
492
|
|
|
486
493
|
|
|
487
494
|
See our [prompting
|
|
488
|
-
guide](/docs/empathic-voice-interface-evi/phone-calling) for tips
|
|
489
|
-
crafting your system prompt.
|
|
495
|
+
guide](/docs/empathic-voice-interface-evi/guides/phone-calling) for tips
|
|
496
|
+
on crafting your system prompt.
|
|
490
497
|
source:
|
|
491
498
|
openapi: stenographer-openapi.json
|
|
492
499
|
path-parameters:
|
|
@@ -520,6 +527,7 @@ service:
|
|
|
520
527
|
response:
|
|
521
528
|
docs: Success
|
|
522
529
|
type: optional<root.ReturnPrompt>
|
|
530
|
+
status-code: 200
|
|
523
531
|
errors:
|
|
524
532
|
- root.BadRequestError
|
|
525
533
|
examples:
|
|
@@ -13,9 +13,9 @@ service:
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
Refer to our [tool
|
|
16
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
17
|
-
for comprehensive instructions on defining and integrating tools
|
|
18
|
-
EVI.
|
|
16
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
17
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
18
|
+
into EVI.
|
|
19
19
|
pagination:
|
|
20
20
|
offset: $request.page_number
|
|
21
21
|
results: $response.tools_page
|
|
@@ -58,6 +58,7 @@ service:
|
|
|
58
58
|
response:
|
|
59
59
|
docs: Success
|
|
60
60
|
type: root.ReturnPagedUserDefinedTools
|
|
61
|
+
status-code: 200
|
|
61
62
|
errors:
|
|
62
63
|
- root.BadRequestError
|
|
63
64
|
examples:
|
|
@@ -115,9 +116,9 @@ service:
|
|
|
115
116
|
|
|
116
117
|
|
|
117
118
|
Refer to our [tool
|
|
118
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
119
|
-
for comprehensive instructions on defining and integrating tools
|
|
120
|
-
EVI.
|
|
119
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
120
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
121
|
+
into EVI.
|
|
121
122
|
source:
|
|
122
123
|
openapi: stenographer-openapi.json
|
|
123
124
|
display-name: Create tool
|
|
@@ -158,6 +159,7 @@ service:
|
|
|
158
159
|
response:
|
|
159
160
|
docs: Created
|
|
160
161
|
type: optional<root.ReturnUserDefinedTool>
|
|
162
|
+
status-code: 201
|
|
161
163
|
errors:
|
|
162
164
|
- root.BadRequestError
|
|
163
165
|
examples:
|
|
@@ -205,9 +207,9 @@ service:
|
|
|
205
207
|
|
|
206
208
|
|
|
207
209
|
Refer to our [tool
|
|
208
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
209
|
-
for comprehensive instructions on defining and integrating tools
|
|
210
|
-
EVI.
|
|
210
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
211
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
212
|
+
into EVI.
|
|
211
213
|
source:
|
|
212
214
|
openapi: stenographer-openapi.json
|
|
213
215
|
path-parameters:
|
|
@@ -248,6 +250,7 @@ service:
|
|
|
248
250
|
response:
|
|
249
251
|
docs: Success
|
|
250
252
|
type: root.ReturnPagedUserDefinedTools
|
|
253
|
+
status-code: 200
|
|
251
254
|
errors:
|
|
252
255
|
- root.BadRequestError
|
|
253
256
|
examples:
|
|
@@ -287,9 +290,9 @@ service:
|
|
|
287
290
|
|
|
288
291
|
|
|
289
292
|
Refer to our [tool
|
|
290
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
291
|
-
for comprehensive instructions on defining and integrating tools
|
|
292
|
-
EVI.
|
|
293
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
294
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
295
|
+
into EVI.
|
|
293
296
|
source:
|
|
294
297
|
openapi: stenographer-openapi.json
|
|
295
298
|
path-parameters:
|
|
@@ -331,6 +334,7 @@ service:
|
|
|
331
334
|
response:
|
|
332
335
|
docs: Created
|
|
333
336
|
type: optional<root.ReturnUserDefinedTool>
|
|
337
|
+
status-code: 201
|
|
334
338
|
errors:
|
|
335
339
|
- root.BadRequestError
|
|
336
340
|
examples:
|
|
@@ -379,9 +383,9 @@ service:
|
|
|
379
383
|
|
|
380
384
|
|
|
381
385
|
Refer to our [tool
|
|
382
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
383
|
-
for comprehensive instructions on defining and integrating tools
|
|
384
|
-
EVI.
|
|
386
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
387
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
388
|
+
into EVI.
|
|
385
389
|
source:
|
|
386
390
|
openapi: stenographer-openapi.json
|
|
387
391
|
path-parameters:
|
|
@@ -403,9 +407,9 @@ service:
|
|
|
403
407
|
|
|
404
408
|
|
|
405
409
|
Refer to our [tool
|
|
406
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
407
|
-
for comprehensive instructions on defining and integrating tools
|
|
408
|
-
EVI.
|
|
410
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
411
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
412
|
+
into EVI.
|
|
409
413
|
source:
|
|
410
414
|
openapi: stenographer-openapi.json
|
|
411
415
|
path-parameters:
|
|
@@ -424,6 +428,7 @@ service:
|
|
|
424
428
|
response:
|
|
425
429
|
docs: Success
|
|
426
430
|
type: text
|
|
431
|
+
status-code: 200
|
|
427
432
|
errors:
|
|
428
433
|
- root.BadRequestError
|
|
429
434
|
examples:
|
|
@@ -440,9 +445,9 @@ service:
|
|
|
440
445
|
|
|
441
446
|
|
|
442
447
|
Refer to our [tool
|
|
443
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
444
|
-
for comprehensive instructions on defining and integrating tools
|
|
445
|
-
EVI.
|
|
448
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
449
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
450
|
+
into EVI.
|
|
446
451
|
source:
|
|
447
452
|
openapi: stenographer-openapi.json
|
|
448
453
|
path-parameters:
|
|
@@ -467,6 +472,7 @@ service:
|
|
|
467
472
|
response:
|
|
468
473
|
docs: Success
|
|
469
474
|
type: optional<root.ReturnUserDefinedTool>
|
|
475
|
+
status-code: 200
|
|
470
476
|
errors:
|
|
471
477
|
- root.BadRequestError
|
|
472
478
|
examples:
|
|
@@ -503,9 +509,9 @@ service:
|
|
|
503
509
|
|
|
504
510
|
|
|
505
511
|
Refer to our [tool
|
|
506
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
507
|
-
for comprehensive instructions on defining and integrating tools
|
|
508
|
-
EVI.
|
|
512
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
513
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
514
|
+
into EVI.
|
|
509
515
|
source:
|
|
510
516
|
openapi: stenographer-openapi.json
|
|
511
517
|
path-parameters:
|
|
@@ -542,9 +548,9 @@ service:
|
|
|
542
548
|
|
|
543
549
|
|
|
544
550
|
Refer to our [tool
|
|
545
|
-
use](/docs/empathic-voice-interface-evi/tool-use#function-calling)
|
|
546
|
-
for comprehensive instructions on defining and integrating tools
|
|
547
|
-
EVI.
|
|
551
|
+
use](/docs/empathic-voice-interface-evi/features/tool-use#function-calling)
|
|
552
|
+
guide for comprehensive instructions on defining and integrating tools
|
|
553
|
+
into EVI.
|
|
548
554
|
source:
|
|
549
555
|
openapi: stenographer-openapi.json
|
|
550
556
|
path-parameters:
|
|
@@ -577,6 +583,7 @@ service:
|
|
|
577
583
|
response:
|
|
578
584
|
docs: Success
|
|
579
585
|
type: optional<root.ReturnUserDefinedTool>
|
|
586
|
+
status-code: 200
|
|
580
587
|
errors:
|
|
581
588
|
- root.BadRequestError
|
|
582
589
|
examples:
|
|
@@ -15,6 +15,7 @@ service:
|
|
|
15
15
|
query-parameters:
|
|
16
16
|
limit:
|
|
17
17
|
type: optional<integer>
|
|
18
|
+
default: 50
|
|
18
19
|
docs: The maximum number of jobs to include in the response.
|
|
19
20
|
status:
|
|
20
21
|
type: optional<Status>
|
|
@@ -43,6 +44,7 @@ service:
|
|
|
43
44
|
`timestamp_ms`.
|
|
44
45
|
timestamp_ms:
|
|
45
46
|
type: optional<long>
|
|
47
|
+
default: 1704319392247
|
|
46
48
|
docs: |-
|
|
47
49
|
Provide a timestamp in milliseconds to filter jobs.
|
|
48
50
|
|
|
@@ -79,11 +81,13 @@ service:
|
|
|
79
81
|
response:
|
|
80
82
|
docs: ''
|
|
81
83
|
type: list<UnionJob>
|
|
84
|
+
status-code: 200
|
|
82
85
|
examples:
|
|
83
86
|
- response:
|
|
84
87
|
body:
|
|
85
88
|
- job_id: job_id
|
|
86
89
|
request:
|
|
90
|
+
callback_url: null
|
|
87
91
|
files:
|
|
88
92
|
- filename: filename
|
|
89
93
|
md5sum: md5sum
|
|
@@ -91,6 +95,8 @@ service:
|
|
|
91
95
|
models:
|
|
92
96
|
burst: {}
|
|
93
97
|
face:
|
|
98
|
+
descriptions: null
|
|
99
|
+
facs: null
|
|
94
100
|
fps_pred: 3
|
|
95
101
|
identify_faces: false
|
|
96
102
|
min_face_size: 60
|
|
@@ -100,11 +106,14 @@ service:
|
|
|
100
106
|
language:
|
|
101
107
|
granularity: word
|
|
102
108
|
identify_speakers: false
|
|
109
|
+
sentiment: null
|
|
110
|
+
toxicity: null
|
|
103
111
|
ner:
|
|
104
112
|
identify_speakers: false
|
|
105
113
|
prosody:
|
|
106
114
|
granularity: utterance
|
|
107
115
|
identify_speakers: false
|
|
116
|
+
window: null
|
|
108
117
|
notify: true
|
|
109
118
|
text: []
|
|
110
119
|
urls:
|
|
@@ -131,6 +140,7 @@ service:
|
|
|
131
140
|
response:
|
|
132
141
|
docs: ''
|
|
133
142
|
type: JobId
|
|
143
|
+
status-code: 200
|
|
134
144
|
property: job_id
|
|
135
145
|
examples:
|
|
136
146
|
- request:
|
|
@@ -155,6 +165,7 @@ service:
|
|
|
155
165
|
response:
|
|
156
166
|
docs: ''
|
|
157
167
|
type: UnionJob
|
|
168
|
+
status-code: 200
|
|
158
169
|
examples:
|
|
159
170
|
- name: Inference
|
|
160
171
|
path-parameters:
|
|
@@ -164,10 +175,13 @@ service:
|
|
|
164
175
|
type: INFERENCE
|
|
165
176
|
job_id: job_id
|
|
166
177
|
request:
|
|
178
|
+
callback_url: null
|
|
167
179
|
files: []
|
|
168
180
|
models:
|
|
169
181
|
burst: {}
|
|
170
182
|
face:
|
|
183
|
+
descriptions: null
|
|
184
|
+
facs: null
|
|
171
185
|
fps_pred: 3
|
|
172
186
|
identify_faces: false
|
|
173
187
|
min_face_size: 60
|
|
@@ -177,11 +191,14 @@ service:
|
|
|
177
191
|
language:
|
|
178
192
|
granularity: word
|
|
179
193
|
identify_speakers: false
|
|
194
|
+
sentiment: null
|
|
195
|
+
toxicity: null
|
|
180
196
|
ner:
|
|
181
197
|
identify_speakers: false
|
|
182
198
|
prosody:
|
|
183
199
|
granularity: utterance
|
|
184
200
|
identify_speakers: false
|
|
201
|
+
window: null
|
|
185
202
|
notify: true
|
|
186
203
|
text: []
|
|
187
204
|
urls:
|
|
@@ -208,6 +225,7 @@ service:
|
|
|
208
225
|
response:
|
|
209
226
|
docs: ''
|
|
210
227
|
type: list<UnionPredictResult>
|
|
228
|
+
status-code: 200
|
|
211
229
|
examples:
|
|
212
230
|
- path-parameters:
|
|
213
231
|
id: job_id
|
|
@@ -221,6 +239,7 @@ service:
|
|
|
221
239
|
- file: faces/100.jpg
|
|
222
240
|
models:
|
|
223
241
|
face:
|
|
242
|
+
metadata: null
|
|
224
243
|
grouped_predictions:
|
|
225
244
|
- id: unknown
|
|
226
245
|
predictions:
|
|
@@ -329,6 +348,8 @@ service:
|
|
|
329
348
|
score: 0.1559651643037796
|
|
330
349
|
- name: Triumph
|
|
331
350
|
score: 0.01955239288508892
|
|
351
|
+
facs: null
|
|
352
|
+
descriptions: null
|
|
332
353
|
errors: []
|
|
333
354
|
get-job-artifacts:
|
|
334
355
|
path: /v0/batch/jobs/{id}/artifacts
|
|
@@ -345,6 +366,7 @@ service:
|
|
|
345
366
|
response:
|
|
346
367
|
docs: ''
|
|
347
368
|
type: file
|
|
369
|
+
status-code: 200
|
|
348
370
|
start-inference-job-from-local-file:
|
|
349
371
|
path: /v0/batch/jobs
|
|
350
372
|
method: POST
|
|
@@ -375,6 +397,7 @@ service:
|
|
|
375
397
|
response:
|
|
376
398
|
docs: ''
|
|
377
399
|
type: JobId
|
|
400
|
+
status-code: 200
|
|
378
401
|
property: job_id
|
|
379
402
|
examples:
|
|
380
403
|
- request: {}
|