diff --git a/playground/demos/positive_med/positive_med.py b/playground/demos/positive_med/positive_med.py index 8e4c2afb..47a6ffc2 100644 --- a/playground/demos/positive_med/positive_med.py +++ b/playground/demos/positive_med/positive_med.py @@ -24,9 +24,9 @@ from termcolor import colored from swarms.models import OpenAIChat from swarms.prompts.autobloggen import ( DRAFT_AGENT_SYSTEM_PROMPT, - REVIEW_PROMPT, + AUTOBLOG_REVIEW_PROMPT, SOCIAL_MEDIA_SYSTEM_PROMPT_AGENT, - TOPIC_GENERATOR, + TOPIC_GENERATOR_SYSTEM_PROMPT, ) import os @@ -62,7 +62,7 @@ topic_selection_task = ( " practices" ) topics = llm( - f"Your System Instructions: {TOPIC_GENERATOR}, Your current task:" + f"Your System Instructions: {TOPIC_GENERATOR_SYSTEM_PROMPT}, Your current task:" f" {topic_selection_task}" ) diff --git a/swarms/prompts/autobloggen.py b/swarms/prompts/autobloggen.py index cffa9ca2..bd71fc46 100644 --- a/swarms/prompts/autobloggen.py +++ b/swarms/prompts/autobloggen.py @@ -274,3 +274,5 @@ Check Accuracy: - Flag any bold claims that lack credible evidence for fact-checker review. """ + +