Poe API
ElevenLabs' leading text-to-speech technology converts your text into natural-sounding speech, using the Turbo v2.5 model. Simply send a text prompt, and the bot will generate audio using your choice of available voices. If you link a URL or a PDF, it will do its best to read it aloud to you. The overall default voice is Jessica, an American-English female.
Optional parameters:
Voice Name. (e.g. "Hello world --voice Eric") to customize the voice used.
Language. Language ISO-639-1 code to your message if you notice pronunciation errors; table of ISO-639-1 codes here: https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes (e.g. zh for Chinese, es for Spanish, hi for Hindi)
The following voices are supported and recommended for each language:
English -- Sarah, George, River, Matilda, Will, Jessica, Brian, Lily, Monika Sogam
Chinese -- James Gao, Martin Li, Will, River
Spanish -- David Martin, Will, Efrayn, Alejandro, Sara Martin, Regina Martin
Hindi -- Ranga, Niraj, Liam, Raju, Leo, Manu, Vihana Huja, Kanika, River, Monika Sogam, Muskaan, Saanu, Riya, Devi
Arabic -- Bill, Mo Wiseman, Haytham, George, Mona, Sarah, Sana, Laura
German -- Bill, Otto, Leon Stern, Mila, Emilia, Lea, Leonie
Indonesian -- Jessica, Putra, Mahaputra
Portuguese -- Will, Muhammad, Onildo, Lily, Jessica, Alice
Vietnamese -- Bill, Liam, Trung Caha, Van Phuc, Ca Dao, Trang, Jessica, Alice, Matilda
Filipino -- Roger, Brian, Alice, Matilda
French -- Roger, Louis, Emilie
Swedish -- Will, Chris, Jessica, Charlotte
Turkish -- Cavit Pancar, Sohbet Adami, Belma, Sultan, Mahidevran
Romanian -- Eric, Bill, Brian, Charlotte, Lily
Italian -- Carmelo, Luca, Alice, Lily
Polish -- Robert, Rob, Eric, Pawel, Lily, Alice
Norwegian -- Chris, Charlotte
Czech -- Pawel
Finnish -- Callum, River
Hungarian -- Brian, Sarah
Japanese -- Alice
Prompt input cannot exceed 40,000 characters.
Powered by a server managed by @elevenlabsco. Learn more
- OFFICIAL
Build with ElevenLabs-v2.5-Turbo using the Poe API
Start by creating an API key, for use with any bot on Poe:
Code samples
python
import openai
client = openai.OpenAI(
api_key = "YOUR_POE_API_KEY", # or os.getenv("POE_API_KEY")
base_url = "https://api.poe.com/v1",
)
chat = client.chat.completions.create(
model = "elevenlabs-v2.5-turbo",
messages = [{
"role": "user",
"content": "Hello world"
}]
)
print(chat.choices[0].message.content)See the full documentation for comprehensive guidance on getting started.