Skip to content

Commit

Permalink
fix(providers/unspeech/elevenlabs): remove model
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa committed Jan 9, 2025
1 parent 604301a commit f50865f
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions packages/providers/src/providers/unspeech/elevenlabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,6 @@ export interface UnElevenLabsOptions {
* supports language enforcement. For other models, an error will be returned if language code is provided.
*/
languageCode?: string
/**
* Identifier of the model that will be used, you can query them using GET /v1/models.
* The model needs to have support for text to speech, you can check this using the
* can_do_text_to_speech property.
*
* Selection guide based on needs
*
* - Quality: Use `elevenlabs/eleven_multilingual_v2`
* - Low-latency: Use `elevenlabs/eleven_flash_v2` or `elevenlabs/eleven_flash_v2_5`
* - Multilingual support: Use `elevenlabs/eleven_multilingual_v2` or `elevenlabs/eleven_flash_v2_5`
*
* Selection guide based on use cases
*
* - Content Creation: Use `elevenlabs/eleven_multilingual_v2`
* - Conversational AI: Use `elevenlabs/eleven_flash_v2_5` or `elevenlabs/eleven_flash_v2`
* - Voice Changer (Speech to Speech): Use `elevenlabs/eleven_multilingual_sts_v2`
*
* @see {@link https://elevenlabs.io/docs/developer-guides/models}
*/
model: 'eleven_english_sts_v2' | 'eleven_flash_v2' | 'eleven_flash_v2_5' | 'eleven_multilingual_sts_v2' | 'eleven_multilingual_v2' | ({} & string)
/**
* A list of request_id of the samples that were generated before this generation. Can
* be used to improve the flow of prosody when splitting up a large task into multiple
Expand Down

0 comments on commit f50865f

Please sign in to comment.