Skip to content

Commit

Permalink
#132 fix config voices
Browse files Browse the repository at this point in the history
  • Loading branch information
souzatharsis committed Oct 31, 2024
1 parent a18b91a commit 49bb2d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion podcastfy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This file can be left empty for now
__version__ = "0.2.17" # or whatever version you're on
__version__ = "0.2.18" # or whatever version you're on
2 changes: 1 addition & 1 deletion podcastfy/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def generate_podcast(

# Use provided tts_model if specified, otherwise use the one from config
if tts_model is None:
tts_model = main_config.get("default_tts_model", "openai")
tts_model = conversation_config.get("default_tts_model", "openai")

if transcript_file:
if image_paths:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "podcastfy"
version = "0.2.17"
version = "0.2.18"
description = "An Open Source alternative to NotebookLM's podcast feature: Transforming Multimodal Content into Captivating Multilingual Audio Conversations with GenAI"
authors = ["Tharsis T. P. Souza"]
license = "Apache-2.0"
Expand Down

0 comments on commit 49bb2d1

Please sign in to comment.