Former-commit-id: 231d5262ba265484aa25803742b5f16428acdf0e
pull/160/head
Kye 2 years ago
parent a8b3bb0983
commit 2f54fd6448

@ -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}}

Loading…
Cancel
Save