INTEGRITY Dokumentace

Cartesia

Cartesia poskytuje pokročilé služby převodu textu na řeč s přizpůsobitelnými hlasovými modely.

Endpoint

https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/cartesia

Struktura URL

Při zasílání požadavků na Cartesia nahraďte https://api.cartesia.ai/v1 v URL adrese, kterou aktuálně používáte s https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/cartesia.

Předpoklady

Při zasílání požadavků na Cartesia se ujistěte, že máte následující:

Příklad

cURL

Požadavek
curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/cartesia/tts/bytes \
  --header 'Content-Type: application/json' \
  --header 'Cartesia-Version: 2024-06-10' \
  --header 'X-API-Key: {cartesia_api_token}' \
  --data '{
    "transcript": "Welcome to Cloudflare - AI Gateway!",
    "model_id": "sonic-english",
    "voice": {
        "mode": "id",
        "id": "694f9389-aac1-45b6-b726-9d9369183238"
    },
    "output_format": {
        "container": "wav",
        "encoding": "pcm_f32le",
        "sample_rate": 44100
    }
}