Skip to content

Commit

Permalink
Merge pull request #159 from souzatharsis/feat/podbytopic
Browse files Browse the repository at this point in the history
update default value for tts-model
  • Loading branch information
souzatharsis authored Nov 7, 2024
2 parents 2eb9b83 + 0addc17 commit 94a8224
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion podcastfy.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@
}
],
"source": [
"audio_file_from_topic = generate_podcast(topic=\"Latest news about OpenAI\", tts_model=\"gemini\")"
"audio_file_from_topic = generate_podcast(topic=\"Latest news about OpenAI\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion podcastfy/text_to_speech.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
class TextToSpeech:
def __init__(
self,
model: str = "openai",
model: str = None,
api_key: Optional[str] = None,
conversation_config: Optional[Dict[str, Any]] = None,
):
Expand Down

0 comments on commit 94a8224

Please sign in to comment.