diff --git a/playground/demos/autotemp/blog_gen_example.py b/playground/demos/autotemp/blog_gen_example.py index e7109b5a..2c2f1e24 100644 --- a/playground/demos/autotemp/blog_gen_example.py +++ b/playground/demos/autotemp/blog_gen_example.py @@ -5,9 +5,7 @@ from blog_gen import BlogGen def main(): api_key = os.getenv("OPENAI_API_KEY") if not api_key: - raise ValueError( - "OPENAI_API_KEY environment variable not set." - ) + raise ValueError("OPENAI_API_KEY environment variable not set.") blog_topic = input("Enter the topic for the blog generation: ") diff --git a/playground/demos/blog_gen/blog_gen_example.py b/playground/demos/blog_gen/blog_gen_example.py deleted file mode 100644 index 7cf95535..00000000 --- a/playground/demos/blog_gen/blog_gen_example.py +++ /dev/null @@ -1,23 +0,0 @@ -import os -from swarms.swarms.blog_gen import BlogGen - - -def main(): - api_key = os.getenv("OPENAI_API_KEY") - if not api_key: - raise ValueError("OPENAI_API_KEY environment variable not set.") - - blog_topic = input("Enter the topic for the blog generation: ") - - blog_generator = BlogGen(api_key, blog_topic) - blog_generator.TOPIC_SELECTION_SYSTEM_PROMPT = ( - blog_generator.TOPIC_SELECTION_SYSTEM_PROMPT.replace( - "{{BLOG_TOPIC}}", blog_topic - ) - ) - - blog_generator.run_workflow() - - -if __name__ == "__main__": - main()