-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c852752
commit 7554fbd
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
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() |