From 2e2ca0b78fb4bc43c9246319fbe85b3718aa28d9 Mon Sep 17 00:00:00 2001 From: Rohit Agarwal Date: Sat, 22 Aug 2026 00:26:58 +0530 Subject: [PATCH 1/2] feat: add ElevenLabs pricing Text-to-speech billed per character (model-tier dependent: multilingual/v3 vs flash/turbo), speech-to-text billed per second. Rates taken from ElevenLabs' published API pricing (elevenlabs.io/pricing/api). Co-Authored-By: Claude Sonnet 5 --- pricing/elevenlabs.json | 93 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 pricing/elevenlabs.json diff --git a/pricing/elevenlabs.json b/pricing/elevenlabs.json new file mode 100644 index 00000000..0c6187c4 --- /dev/null +++ b/pricing/elevenlabs.json @@ -0,0 +1,93 @@ +{ + "eleven_multilingual_v2": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0.01 + }, + "response_token": { + "price": 0 + } + }, + "currency": "USD" + } + }, + "eleven_v3": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0.01 + }, + "response_token": { + "price": 0 + } + }, + "currency": "USD" + } + }, + "eleven_flash_v2_5": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0.005 + }, + "response_token": { + "price": 0 + } + }, + "currency": "USD" + } + }, + "eleven_turbo_v2_5": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0.005 + }, + "response_token": { + "price": 0 + } + }, + "currency": "USD" + } + }, + "text-to-speech": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0.01 + }, + "response_token": { + "price": 0 + } + }, + "currency": "USD" + } + }, + "scribe_v1": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0 + }, + "response_token": { + "price": 0.00611111 + } + }, + "currency": "USD" + } + }, + "speech-to-text": { + "pricing_config": { + "pay_as_you_go": { + "request_token": { + "price": 0 + }, + "response_token": { + "price": 0.00611111 + } + }, + "currency": "USD" + } + } +} From 1b3e9a559ea3080f70d62865e1ff94d7430c5f65 Mon Sep 17 00:00:00 2001 From: Rohit Agarwal Date: Mon, 24 Aug 2026 20:31:21 +0530 Subject: [PATCH 2/2] feat: add ElevenLabs general config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mirrors general/deepgram.json — audio type, playground disabled, model keys matching the pricing entries. Co-Authored-By: Claude Opus 5 (1M context) --- general/elevenlabs.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 general/elevenlabs.json diff --git a/general/elevenlabs.json b/general/elevenlabs.json new file mode 100644 index 00000000..214f9097 --- /dev/null +++ b/general/elevenlabs.json @@ -0,0 +1,34 @@ +{ + "name": "elevenlabs", + "description": "", + "default": { + "params": [], + "type": { "primary": "audio", "supported": [] }, + "disablePlayground": true + }, + "eleven_multilingual_v2": { + "params": [], + "type": { "primary": "audio" }, + "disablePlayground": true + }, + "eleven_v3": { + "params": [], + "type": { "primary": "audio" }, + "disablePlayground": true + }, + "eleven_flash_v2_5": { + "params": [], + "type": { "primary": "audio" }, + "disablePlayground": true + }, + "eleven_turbo_v2_5": { + "params": [], + "type": { "primary": "audio" }, + "disablePlayground": true + }, + "scribe_v1": { + "params": [], + "type": { "primary": "audio" }, + "disablePlayground": true + } +}