Skip to content

Commit

Permalink
update dir mgt in content gen
Browse files Browse the repository at this point in the history
  • Loading branch information
souzatharsis committed Oct 27, 2024
1 parent 367082e commit caa56e3
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.13" # or whatever version you're on
__version__ = "0.2.14" # or whatever version you're on
2 changes: 1 addition & 1 deletion podcastfy/content_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def __init__(
self.content_generator_config = self.config.get("content_generator", {})

self.config_conversation = load_conversation_config(conversation_config)
self.tts_config = self.conversation_config.get('text_to_speech', {})
self.tts_config = self.config_conversation.get('text_to_speech', {})

# Get output directories from conversation config
self.output_directories = self.tts_config.get('output_directories', {})
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.13"
version = "0.2.14"
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 caa56e3

Please sign in to comment.