Former-commit-id: b294f86744
b294f86744
@ -1,5 +1,5 @@
from swarms.workers import Worker
from swarms.agents import MetaPrompterAgent
from swarms.agents.meta_prompter import MetaPrompterAgent
from langchain.llms import OpenAI
llm = OpenAI()
@ -68,7 +68,7 @@ class MetaPrompterAgent:
memory = ConversationBufferWindowMemory()
memory.ai_prefix = "Assistant:"
self.template = f"""
template = f"""
Instructions: {self.instructions}
{{{memory.memory_key}}}
Human: {{human_input}}