fix elevenlabs provider selection
This commit is contained in:
parent
bcef4ed46f
commit
fe23e35670
1 changed files with 2 additions and 0 deletions
|
|
@ -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}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue