Documentation Index
Fetch the complete documentation index at: https://docs.cartesia.ai/llms.txt
Use this file to discover all available pages before exploring further.
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:486async function voicesUpdate(client: Cartesia): Promise<void> {
/** Update a voice. */
await client.voices.update('voice-id', {
name: 'Updated Name',
description: 'Updated description',
});
}
From cartesia-js/examples/node_examples.ts:360
Run this example
cd cartesia-python
CARTESIA_API_KEY=YOUR_KEY python3 examples/examples.py voices_update
cd cartesia-js
CARTESIA_API_KEY=YOUR_KEY npx ts-node examples/node_examples.ts voicesUpdate