You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.
Currently, there is no functional way to change the Text-to-Speech (TTS) language in our application. While the system is intended to support French ("fr") as a language option, this setting is not being properly propagated through the application stack. This issue affects the user experience as it prevents the bot from speaking in the desired language.
Detailed breakdown of the issue:
Frontend Configuration:
In config.ts, we have a language definition for French:
Currently, there is no functional way to change the Text-to-Speech (TTS) language in our application. While the system is intended to support French ("fr") as a language option, this setting is not being properly propagated through the application stack. This issue affects the user experience as it prevents the bot from speaking in the desired language.
Detailed breakdown of the issue:
Frontend Configuration:
config.ts
, we have a language definition for French:Voice Selection:
VoiceSelect
component in the frontend only allows selection of voices, not languages.Configuration Update:
Backend Configuration Handling:
rtvi.py
, theRTVITTSConfig
class does not include a language field._handle_setup
method in theRTVIProcessor
does not extract or use a language setting from the configuration.TTS Service Initialization:
CartesiaTTSService
inrtvi.py
, no language parameter is passed:Cartesia API Call:
cartesia.py
, therun_tts
method does not include a language parameter in the API call to Cartesia.Steps to reproduce:
Expected behavior:
The bot should speak in French when the French language is selected.
Actual behavior:
The bot continues to speak in the default language, regardless of any attempt to change to French.
The text was updated successfully, but these errors were encountered: