elevenlabs / elevenlabs-python

The official Python API for ElevenLabs Text to Speech.
https://elevenlabs.io/docs/api-reference/getting-started
MIT License
2.1k stars 239 forks source link

🐞 bug in Italian when it comes to reading numbers #101

Closed sergenti closed 1 year ago

sergenti commented 1 year ago

here's an example valuta la tua esperienza da 1 a 10 11labs speaks perfect Italian but then, out of the blue, it reads the numbers in English;

essentially, it's reading this; valuta la tua esperienza da ONE a TEN

instead of this: valuta la tua esperienza da UNO a DIECI

code:

        # generate audio
        audio = elevenlabs.generate(
            text=message,
            voice="Rachel",
            model="eleven_multilingual_v1",
        )
flavioschneider commented 1 year ago

We are aware of this issue, a temporary hack to fix this is to convert numbers into words (1=uno, 10=dieci).

flavioschneider commented 1 year ago

Closing as similar to #83