Skip to main content
def voices_update(client: Cartesia, voice_id: str) -> None:
    """Update a voice."""
    client.voices.update(
        voice_id,
        name="Updated Name",
        description="Updated description",
    )
From cartesia-python/examples/examples.py:486

Run this example

cd cartesia-python
CARTESIA_API_KEY=YOUR_KEY python3 examples/examples.py voices_update