diff --git a/podcastfy/client.py b/podcastfy/client.py index bef873d..31e97e6 100644 --- a/podcastfy/client.py +++ b/podcastfy/client.py @@ -27,6 +27,8 @@ app = typer.Typer() +os.environ["LANGCHAIN_TRACING_V2"] = "false" + def process_content( urls=None, diff --git a/podcastfy/content_generator.py b/podcastfy/content_generator.py index a92f416..e5ab26d 100644 --- a/podcastfy/content_generator.py +++ b/podcastfy/content_generator.py @@ -80,7 +80,7 @@ def __compose_prompt(self, num_images: int): prompt_template = hub.pull( self.config.get("content_generator", {}).get( "prompt_template", "souzatharsis/podcastfy_multimodal" - ) + )+":c67bea9c" ) image_path_keys = [] diff --git a/tests/test_generate_podcast.py b/tests/test_generate_podcast.py index 7ab43f3..33570ff 100644 --- a/tests/test_generate_podcast.py +++ b/tests/test_generate_podcast.py @@ -167,7 +167,7 @@ def test_generate_transcript_with_user_instructions(sample_config): # Create a custom conversation config with user instructions conversation_config = { - "word_count": 300, + "word_count": 2000, "conversation_style": ["formal", "educational"], "roles_person1": "professor", "roles_person2": "student",