code
stringlengths
66
870k
docstring
stringlengths
19
26.7k
func_name
stringlengths
1
138
language
stringclasses
1 value
repo
stringlengths
7
68
path
stringlengths
5
324
url
stringlengths
46
389
license
stringclasses
7 values
async def get_all( self, *, show_legacy: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None ) -> GetVoicesResponse: """ Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing.Optional[bool] ...
Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing.Optional[bool] If set to true, legacy premade voices will be included in responses from /v1/voices request_options : typing.Optional[RequestOptions] Request-sp...
get_all
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def search( self, *, next_page_token: typing.Optional[str] = None, page_size: typing.Optional[int] = None, search: typing.Optional[str] = None, sort: typing.Optional[str] = None, sort_direction: typing.Optional[str] = None, voice_type: typing.Optiona...
Gets a list of all available voices for a user with search, filtering and pagination. Parameters ---------- next_page_token : typing.Optional[str] The next page token to use for pagination. Returned from the previous request. page_size : typing.Optional[int] ...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def get( self, voice_id: str, *, with_settings: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None, ) -> Voice: """ Returns metadata about a specific voice. Parameters ---------- voice_id : str ...
Returns metadata about a specific voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. with_settings : typing.Optional[bool] This ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def delete( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> DeleteVoiceResponseModel: """ Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/...
Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. request_options : typing.Optional[RequestOptions] Request...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def update( self, voice_id: str, *, name: str, files: typing.Optional[typing.List[core.File]] = OMIT, remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, reques...
Edit a voice created by you. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. name : str The name that identifies this voice. This wi...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def get_shared( self, *, page_size: typing.Optional[int] = None, category: typing.Optional[VoicesGetSharedRequestCategory] = None, gender: typing.Optional[str] = None, age: typing.Optional[str] = None, accent: typing.Optional[str] = None, language: t...
Retrieves a list of shared voices. Parameters ---------- page_size : typing.Optional[int] How many shared voices to return at maximum. Can not exceed 100, defaults to 30. category : typing.Optional[VoicesGetSharedRequestCategory] Voice category used for...
get_shared
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
async def find_similar_voices( self, *, audio_file: typing.Optional[core.File] = OMIT, similarity_threshold: typing.Optional[float] = OMIT, top_k: typing.Optional[int] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> GetLibraryVoicesResponse: ...
Returns a list of shared voices similar to the provided audio sample. If neither similarity_threshold nor top_k is provided, we will apply default values. Parameters ---------- audio_file : typing.Optional[core.File] See core.File for more documentation similarity_...
find_similar_voices
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/client.py
MIT
def get_all( self, *, show_legacy: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[GetVoicesResponse]: """ Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing.Optional[b...
Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing.Optional[bool] If set to true, legacy premade voices will be included in responses from /v1/voices request_options : typing.Optional[RequestOptions] Request-sp...
get_all
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def search( self, *, next_page_token: typing.Optional[str] = None, page_size: typing.Optional[int] = None, search: typing.Optional[str] = None, sort: typing.Optional[str] = None, sort_direction: typing.Optional[str] = None, voice_type: typing.Optional[str]...
Gets a list of all available voices for a user with search, filtering and pagination. Parameters ---------- next_page_token : typing.Optional[str] The next page token to use for pagination. Returned from the previous request. page_size : typing.Optional[int] ...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def get( self, voice_id: str, *, with_settings: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[Voice]: """ Returns metadata about a specific voice. Parameters ---------- voice_i...
Returns metadata about a specific voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. with_settings : typing.Optional[bool] This ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def delete( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[DeleteVoiceResponseModel]: """ Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get v...
Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. request_options : typing.Optional[RequestOptions] Request...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def update( self, voice_id: str, *, name: str, files: typing.Optional[typing.List[core.File]] = OMIT, remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, request_opti...
Edit a voice created by you. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. name : str The name that identifies this voice. This wi...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def share( self, public_user_id: str, voice_id: str, *, new_name: str, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[AddVoiceResponseModel]: """ Add a shared voice to your collection of Voices Parameters --...
Add a shared voice to your collection of Voices Parameters ---------- public_user_id : str Public user ID used to publicly identify ElevenLabs users. voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/sear...
share
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def get_shared( self, *, page_size: typing.Optional[int] = None, category: typing.Optional[VoicesGetSharedRequestCategory] = None, gender: typing.Optional[str] = None, age: typing.Optional[str] = None, accent: typing.Optional[str] = None, language: typing....
Retrieves a list of shared voices. Parameters ---------- page_size : typing.Optional[int] How many shared voices to return at maximum. Can not exceed 100, defaults to 30. category : typing.Optional[VoicesGetSharedRequestCategory] Voice category used for...
get_shared
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def find_similar_voices( self, *, audio_file: typing.Optional[core.File] = OMIT, similarity_threshold: typing.Optional[float] = OMIT, top_k: typing.Optional[int] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[GetLibraryVoicesRespons...
Returns a list of shared voices similar to the provided audio sample. If neither similarity_threshold nor top_k is provided, we will apply default values. Parameters ---------- audio_file : typing.Optional[core.File] See core.File for more documentation similarity_...
find_similar_voices
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def get_all( self, *, show_legacy: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[GetVoicesResponse]: """ Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing...
Returns a list of all available voices for a user. Parameters ---------- show_legacy : typing.Optional[bool] If set to true, legacy premade voices will be included in responses from /v1/voices request_options : typing.Optional[RequestOptions] Request-sp...
get_all
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def search( self, *, next_page_token: typing.Optional[str] = None, page_size: typing.Optional[int] = None, search: typing.Optional[str] = None, sort: typing.Optional[str] = None, sort_direction: typing.Optional[str] = None, voice_type: typing.Optiona...
Gets a list of all available voices for a user with search, filtering and pagination. Parameters ---------- next_page_token : typing.Optional[str] The next page token to use for pagination. Returned from the previous request. page_size : typing.Optional[int] ...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def get( self, voice_id: str, *, with_settings: typing.Optional[bool] = None, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[Voice]: """ Returns metadata about a specific voice. Parameters ---------- ...
Returns metadata about a specific voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. with_settings : typing.Optional[bool] This ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def delete( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[DeleteVoiceResponseModel]: """ Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use...
Deletes a voice by its ID. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. request_options : typing.Optional[RequestOptions] Request...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def update( self, voice_id: str, *, name: str, files: typing.Optional[typing.List[core.File]] = OMIT, remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, reques...
Edit a voice created by you. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. name : str The name that identifies this voice. This wi...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def share( self, public_user_id: str, voice_id: str, *, new_name: str, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[AddVoiceResponseModel]: """ Add a shared voice to your collection of Voices Parameters...
Add a shared voice to your collection of Voices Parameters ---------- public_user_id : str Public user ID used to publicly identify ElevenLabs users. voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/sear...
share
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def get_shared( self, *, page_size: typing.Optional[int] = None, category: typing.Optional[VoicesGetSharedRequestCategory] = None, gender: typing.Optional[str] = None, age: typing.Optional[str] = None, accent: typing.Optional[str] = None, language: t...
Retrieves a list of shared voices. Parameters ---------- page_size : typing.Optional[int] How many shared voices to return at maximum. Can not exceed 100, defaults to 30. category : typing.Optional[VoicesGetSharedRequestCategory] Voice category used for...
get_shared
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
async def find_similar_voices( self, *, audio_file: typing.Optional[core.File] = OMIT, similarity_threshold: typing.Optional[float] = OMIT, top_k: typing.Optional[int] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[GetLibraryVo...
Returns a list of shared voices similar to the provided audio sample. If neither similarity_threshold nor top_k is provided, we will apply default values. Parameters ---------- audio_file : typing.Optional[core.File] See core.File for more documentation similarity_...
find_similar_voices
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/raw_client.py
MIT
def create( self, *, name: str, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ...
Create a voice clone and add it to your Voices Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. files : typing.List[core.File] See core.File for more documentation remo...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/ivc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/ivc/client.py
MIT
async def create( self, *, name: str, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = No...
Create a voice clone and add it to your Voices Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. files : typing.List[core.File] See core.File for more documentation remo...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/ivc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/ivc/client.py
MIT
def create( self, *, name: str, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ...
Create a voice clone and add it to your Voices Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. files : typing.List[core.File] See core.File for more documentation remo...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/ivc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/ivc/raw_client.py
MIT
async def create( self, *, name: str, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = No...
Create a voice clone and add it to your Voices Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. files : typing.List[core.File] See core.File for more documentation remo...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/ivc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/ivc/raw_client.py
MIT
def update( self, voice_id: str, *, name: typing.Optional[str] = OMIT, language: typing.Optional[str] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Optional...
Edit PVC voice metadata Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. name : typing.Optional[str] The name that identifies this voice. This will be displayed i...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/client.py
MIT
def train( self, voice_id: str, *, model_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> StartPvcVoiceTrainingResponseModel: """ Start PVC training process for a voice. Parameters ---------- ...
Start PVC training process for a voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. model_id : typing.Optional[str] The model ID to use for the conversion. ...
train
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/client.py
MIT
async def update( self, voice_id: str, *, name: typing.Optional[str] = OMIT, language: typing.Optional[str] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Op...
Edit PVC voice metadata Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. name : typing.Optional[str] The name that identifies this voice. This will be displayed i...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/client.py
MIT
async def train( self, voice_id: str, *, model_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> StartPvcVoiceTrainingResponseModel: """ Start PVC training process for a voice. Parameters ----------...
Start PVC training process for a voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. model_id : typing.Optional[str] The model ID to use for the conversion. ...
train
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/client.py
MIT
def create( self, *, name: str, language: str, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[AddVoiceResponseModel]: ...
Creates a new PVC voice with metadata but no samples Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. language : str Language used in the samples. description : typing....
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
def update( self, voice_id: str, *, name: typing.Optional[str] = OMIT, language: typing.Optional[str] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Optional...
Edit PVC voice metadata Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. name : typing.Optional[str] The name that identifies this voice. This will be displayed i...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
def train( self, voice_id: str, *, model_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[StartPvcVoiceTrainingResponseModel]: """ Start PVC training process for a voice. Parameters --...
Start PVC training process for a voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. model_id : typing.Optional[str] The model ID to use for the conversion. ...
train
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
async def create( self, *, name: str, language: str, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[AddVoiceRespo...
Creates a new PVC voice with metadata but no samples Parameters ---------- name : str The name that identifies this voice. This will be displayed in the dropdown of the website. language : str Language used in the samples. description : typing....
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
async def update( self, voice_id: str, *, name: typing.Optional[str] = OMIT, language: typing.Optional[str] = OMIT, description: typing.Optional[str] = OMIT, labels: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT, request_options: typing.Op...
Edit PVC voice metadata Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. name : typing.Optional[str] The name that identifies this voice. This will be displayed i...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
async def train( self, voice_id: str, *, model_id: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[StartPvcVoiceTrainingResponseModel]: """ Start PVC training process for a voice. Parameters...
Start PVC training process for a voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. model_id : typing.Optional[str] The model ID to use for the conversion. ...
train
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/raw_client.py
MIT
def create( self, voice_id: str, *, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> typing.List[VoiceSample]: """ Add audio samples to a PVC voice ...
Add audio samples to a PVC voice Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation rem...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
def update( self, voice_id: str, sample_id: str, *, remove_background_noise: typing.Optional[bool] = OMIT, selected_speaker_ids: typing.Optional[typing.Sequence[str]] = OMIT, trim_start_time: typing.Optional[int] = OMIT, trim_end_time: typing.Optional[int]...
Update a PVC voice sample - apply noise removal, or select speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used ...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
def delete( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> DeleteVoiceSampleResponseModel: """ Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use ht...
Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typing.Optional...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
async def create( self, voice_id: str, *, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> typing.List[VoiceSample]: """ Add audio samples to a PVC voice...
Add audio samples to a PVC voice Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation rem...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
async def update( self, voice_id: str, sample_id: str, *, remove_background_noise: typing.Optional[bool] = OMIT, selected_speaker_ids: typing.Optional[typing.Sequence[str]] = OMIT, trim_start_time: typing.Optional[int] = OMIT, trim_end_time: typing.Optiona...
Update a PVC voice sample - apply noise removal, or select speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used ...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
async def delete( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> DeleteVoiceSampleResponseModel: """ Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can ...
Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typing.Optional...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/client.py
MIT
def create( self, voice_id: str, *, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[typing.List[VoiceSample]]: """ Add audio samples to a P...
Add audio samples to a PVC voice Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation rem...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
def update( self, voice_id: str, sample_id: str, *, remove_background_noise: typing.Optional[bool] = OMIT, selected_speaker_ids: typing.Optional[typing.Sequence[str]] = OMIT, trim_start_time: typing.Optional[int] = OMIT, trim_end_time: typing.Optional[int]...
Update a PVC voice sample - apply noise removal, or select speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used ...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
def delete( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[DeleteVoiceSampleResponseModel]: """ Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, ...
Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typing.Optional...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
async def create( self, voice_id: str, *, files: typing.List[core.File], remove_background_noise: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[typing.List[VoiceSample]]: """ Add audio sam...
Add audio samples to a PVC voice Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation rem...
create
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
async def update( self, voice_id: str, sample_id: str, *, remove_background_noise: typing.Optional[bool] = OMIT, selected_speaker_ids: typing.Optional[typing.Sequence[str]] = OMIT, trim_start_time: typing.Optional[int] = OMIT, trim_end_time: typing.Optiona...
Update a PVC voice sample - apply noise removal, or select speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used ...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
async def delete( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[DeleteVoiceSampleResponseModel]: """ Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID t...
Delete a sample from a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typing.Optional...
delete
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/raw_client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> VoiceSamplePreviewResponseModel: """ Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id : str ...
Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to b...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/audio/client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> VoiceSamplePreviewResponseModel: """ Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id ...
Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to b...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/audio/client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[VoiceSamplePreviewResponseModel]: """ Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- v...
Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to b...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/audio/raw_client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[VoiceSamplePreviewResponseModel]: """ Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------...
Retrieve the first 30 seconds of voice sample audio with or without noise removal. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to b...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/audio/raw_client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> SpeakerSeparationResponseModel: """ Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- ...
Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/client.py
MIT
def separate( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> StartSpeakerSeparationResponseModel: """ Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID to be u...
Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typ...
separate
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> SpeakerSeparationResponseModel: """ Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- ...
Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/client.py
MIT
async def separate( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> StartSpeakerSeparationResponseModel: """ Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID t...
Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typ...
separate
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[SpeakerSeparationResponseModel]: """ Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---...
Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
MIT
def separate( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[StartSpeakerSeparationResponseModel]: """ Start speaker separation process for a sample Parameters ---------- voice_id : str Vo...
Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typ...
separate
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[SpeakerSeparationResponseModel]: """ Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ...
Retrieve the status of the speaker separation process and the list of detected speakers if complete. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
MIT
async def separate( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[StartSpeakerSeparationResponseModel]: """ Start speaker separation process for a sample Parameters ---------- voice_id : str ...
Start speaker separation process for a sample Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : typ...
separate
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/raw_client.py
MIT
def get( self, voice_id: str, sample_id: str, speaker_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> SpeakerAudioResponseModel: """ Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str Voice I...
Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used speaker_id : s...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/audio/client.py
MIT
async def get( self, voice_id: str, sample_id: str, speaker_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> SpeakerAudioResponseModel: """ Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str V...
Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used speaker_id : s...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/audio/client.py
MIT
def get( self, voice_id: str, sample_id: str, speaker_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[SpeakerAudioResponseModel]: """ Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str ...
Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used speaker_id : s...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/audio/raw_client.py
MIT
async def get( self, voice_id: str, sample_id: str, speaker_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[SpeakerAudioResponseModel]: """ Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id ...
Retrieve the separated audio for a specific speaker. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used speaker_id : s...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/speakers/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/speakers/audio/raw_client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> VoiceSampleVisualWaveformResponseModel: """ Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID to be u...
Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : t...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/waveform/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/waveform/client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> VoiceSampleVisualWaveformResponseModel: """ Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID t...
Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : t...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/waveform/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/waveform/client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[VoiceSampleVisualWaveformResponseModel]: """ Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Vo...
Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : t...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/waveform/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/waveform/raw_client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[VoiceSampleVisualWaveformResponseModel]: """ Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str ...
Retrieve the visual waveform of a voice sample. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. sample_id : str Sample ID to be used request_options : t...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/samples/waveform/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/samples/waveform/raw_client.py
MIT
def request( self, voice_id: str, *, files: typing.List[core.File], extra_text: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> RequestPvcManualVerificationResponseModel: """ Request manual verification for a ...
Request manual verification for a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation ...
request
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/client.py
MIT
async def request( self, voice_id: str, *, files: typing.List[core.File], extra_text: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> RequestPvcManualVerificationResponseModel: """ Request manual verification ...
Request manual verification for a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation ...
request
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/client.py
MIT
def request( self, voice_id: str, *, files: typing.List[core.File], extra_text: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[RequestPvcManualVerificationResponseModel]: """ Request manual verif...
Request manual verification for a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation ...
request
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/raw_client.py
MIT
async def request( self, voice_id: str, *, files: typing.List[core.File], extra_text: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[RequestPvcManualVerificationResponseModel]: """ Request m...
Request manual verification for a PVC voice. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. files : typing.List[core.File] See core.File for more documentation ...
request
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/raw_client.py
MIT
async def get(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> None: """ Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all t...
Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. request_options : typing.Optional[RequestOptions] Request-specific config...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/captcha/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/captcha/client.py
MIT
def get(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> HttpResponse[None]: """ Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to li...
Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. request_options : typing.Optional[RequestOptions] Request-specific config...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/captcha/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/captcha/raw_client.py
MIT
async def get( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[None]: """ Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elev...
Get captcha for PVC voice verification. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api.elevenlabs.io/v1/voices to list all the available voices. request_options : typing.Optional[RequestOptions] Request-specific config...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/pvc/verification/captcha/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/pvc/verification/captcha/raw_client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> typing.Iterator[bytes]: """ Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID of the voice...
Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. sample_id : str ID ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/samples/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/samples/audio/client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> typing.AsyncIterator[bytes]: """ Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID o...
Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. sample_id : str ID ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/samples/audio/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/samples/audio/client.py
MIT
def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> typing.Iterator[HttpResponse[typing.Iterator[bytes]]]: """ Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : ...
Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. sample_id : str ID ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/samples/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/samples/audio/raw_client.py
MIT
async def get( self, voice_id: str, sample_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> typing.AsyncIterator[AsyncHttpResponse[typing.AsyncIterator[bytes]]]: """ Returns the audio corresponding to a sample attached to a voice. Parameters ---------...
Returns the audio corresponding to a sample attached to a voice. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [Get voices](/docs/api-reference/voices/search) endpoint list all the available voices. sample_id : str ID ...
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/samples/audio/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/samples/audio/raw_client.py
MIT
def update( self, voice_id: str, *, request: VoiceSettings, request_options: typing.Optional[RequestOptions] = None ) -> EditVoiceSettingsResponseModel: """ Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and "stabi...
Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [G...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/client.py
MIT
async def get_default(self, *, request_options: typing.Optional[RequestOptions] = None) -> VoiceSettings: """ Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. ...
Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- request_options : typing.Optional[RequestOptions] Request-specifi...
get_default
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/client.py
MIT
async def get(self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None) -> VoiceSettings: """ Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web ...
Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api....
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/client.py
MIT
async def update( self, voice_id: str, *, request: VoiceSettings, request_options: typing.Optional[RequestOptions] = None ) -> EditVoiceSettingsResponseModel: """ Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and ...
Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [G...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/client.py
MIT
def get_default(self, *, request_options: typing.Optional[RequestOptions] = None) -> HttpResponse[VoiceSettings]: """ Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app....
Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- request_options : typing.Optional[RequestOptions] Request-specifi...
get_default
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
def get( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[VoiceSettings]: """ Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stabili...
Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api....
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
def update( self, voice_id: str, *, request: VoiceSettings, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[EditVoiceSettingsResponseModel]: """ Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web ...
Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [G...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
async def get_default( self, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[VoiceSettings]: """ Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stabilit...
Gets the default settings for voices. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- request_options : typing.Optional[RequestOptions] Request-specifi...
get_default
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
async def get( self, voice_id: str, *, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[VoiceSettings]: """ Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds ...
Returns the settings for a specific voice. "similarity_boost" corresponds to"Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str Voice ID to be used, you can use https://api....
get
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
async def update( self, voice_id: str, *, request: VoiceSettings, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[EditVoiceSettingsResponseModel]: """ Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" ...
Edit your settings for a specific voice. "similarity_boost" corresponds to "Clarity + Similarity Enhancement" in the web app and "stability" corresponds to "Stability" slider in the web app. Parameters ---------- voice_id : str ID of the voice to be used. You can use the [G...
update
python
elevenlabs/elevenlabs-python
src/elevenlabs/voices/settings/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/voices/settings/raw_client.py
MIT
def search( self, *, name: str, request_options: typing.Optional[RequestOptions] = None ) -> typing.List[WorkspaceGroupByNameResponseModel]: """ Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str ...
Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str Name of the target group. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns -----...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/client.py
MIT
async def search( self, *, name: str, request_options: typing.Optional[RequestOptions] = None ) -> typing.List[WorkspaceGroupByNameResponseModel]: """ Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str ...
Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str Name of the target group. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns -----...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/client.py
MIT
def search( self, *, name: str, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[typing.List[WorkspaceGroupByNameResponseModel]]: """ Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name...
Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str Name of the target group. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns -----...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/raw_client.py
MIT
async def search( self, *, name: str, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[typing.List[WorkspaceGroupByNameResponseModel]]: """ Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- ...
Searches for user groups in the workspace. Multiple or no groups may be returned. Parameters ---------- name : str Name of the target group. request_options : typing.Optional[RequestOptions] Request-specific configuration. Returns -----...
search
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/raw_client.py
MIT
def remove( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> DeleteWorkspaceGroupMemberResponseModel: """ Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters -----...
Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request_options : ty...
remove
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/client.py
MIT
def add( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> AddWorkspaceGroupMemberResponseModel: """ Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Parameters ...
Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request...
add
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/client.py
MIT
async def remove( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> DeleteWorkspaceGroupMemberResponseModel: """ Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters ...
Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request_options : ty...
remove
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/client.py
MIT
async def add( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> AddWorkspaceGroupMemberResponseModel: """ Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Parameters ...
Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request...
add
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/client.py
MIT
def remove( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[DeleteWorkspaceGroupMemberResponseModel]: """ Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters...
Removes a member from the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request_options : ty...
remove
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/raw_client.py
MIT
def add( self, group_id: str, *, email: str, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[AddWorkspaceGroupMemberResponseModel]: """ Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Par...
Adds a member of your workspace to the specified group. This endpoint may only be called by workspace administrators. Parameters ---------- group_id : str The ID of the target group. email : str The email of the target workspace member. request...
add
python
elevenlabs/elevenlabs-python
src/elevenlabs/workspace/groups/members/raw_client.py
https://github.com/elevenlabs/elevenlabs-python/blob/master/src/elevenlabs/workspace/groups/members/raw_client.py
MIT