curl --request POST \
--url https://users.rime.ai/v1/rime-tts \
--header 'Accept: audio/pcm' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--output output.pcm \
--fail \
--data '{
"text": "<string>",
"modelId": "arcana",
"speaker": "<string>",
"lang": "eng",
"max_tokens": 1200,
"repetition_penalty": 1.5,
"samplingRate": 24000,
"speedAlpha": 1,
"temperature": 0.5,
"top_p": 1
}'