unspeech 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -209,7 +209,7 @@ interface UnElevenLabsOptions {
|
|
|
209
209
|
*/
|
|
210
210
|
declare const createUnElevenLabs: (apiKey: string, baseURL?: string) => SpeechProviderWithExtraOptions<"eleven_english_sts_v2" | "eleven_flash_v2" | "eleven_flash_v2_5" | "eleven_multilingual_sts_v2" | "eleven_multilingual_v2", UnElevenLabsOptions> & VoiceProviderWithExtraOptions<UnElevenLabsOptions>;
|
|
211
211
|
|
|
212
|
-
|
|
212
|
+
interface UnVolcanoEngineOptions {
|
|
213
213
|
app?: {
|
|
214
214
|
appId?: string;
|
|
215
215
|
cluster?: string | 'volcano_tts';
|
|
@@ -294,7 +294,7 @@ type UnVolcanoEngineOptions = {
|
|
|
294
294
|
cacheConfig?: Record<string, unknown>;
|
|
295
295
|
useCache?: boolean;
|
|
296
296
|
};
|
|
297
|
-
}
|
|
297
|
+
}
|
|
298
298
|
/**
|
|
299
299
|
* [Volcengine / 火山引擎](https://www.volcengine.com/docs/6561/162929) provider for [UnSpeech](https://github.com/moeru-ai/unspeech)
|
|
300
300
|
* only.
|
|
@@ -368,4 +368,4 @@ interface ListVoicesResponse {
|
|
|
368
368
|
}
|
|
369
369
|
declare const listVoices: (options: ListVoicesOptions) => Promise<Voice[]>;
|
|
370
370
|
|
|
371
|
-
export { type ListVoicesOptions, type ListVoicesResponse, type MicrosoftRegions, type UnAlibabaOptions, type UnElevenLabsOptions, type UnMicrosoftOptionAutoSSML, type UnMicrosoftOptionCommon, type UnMicrosoftOptionCustomSSML, type UnMicrosoftOptions, type UnSpeechOptions, type Voice, type VoiceFormat, type VoiceLanguage, type VoiceProvider, type VoiceProviderWithExtraOptions, createUnAlibaba, createUnElevenLabs, createUnMicrosoft, createUnSpeech, createUnVolcanoEngine, listVoices };
|
|
371
|
+
export { type ListVoicesOptions, type ListVoicesResponse, type MicrosoftRegions, type UnAlibabaOptions, type UnElevenLabsOptions, type UnMicrosoftOptionAutoSSML, type UnMicrosoftOptionCommon, type UnMicrosoftOptionCustomSSML, type UnMicrosoftOptions, type UnSpeechOptions, type UnVolcanoEngineOptions, type Voice, type VoiceFormat, type VoiceLanguage, type VoiceProvider, type VoiceProviderWithExtraOptions, createUnAlibaba, createUnElevenLabs, createUnMicrosoft, createUnSpeech, createUnVolcanoEngine, listVoices };
|