fix elevenlabs provider selection

This commit is contained in:
LUIS NOVO 2025-03-11 20:49:53 -03:00
parent bcef4ed46f
commit fe23e35670

View file

@ -117,6 +117,8 @@ class PodcastConfig(ObjectModel):
tts_model = "openai"
elif self.provider == "anthropic":
tts_model = "anthropic"
elif self.provider == "elevenlabs":
tts_model = "elevenlabs"
logger.debug(
f"Generating episode {episode_name} with config {conversation_config} and using model {llm_model_name}, tts model {tts_model}"