From 9fafe7b2b90b67430a3c0de48ebfce188c81e0b3 Mon Sep 17 00:00:00 2001 From: mbchang Date: Tue, 9 May 2023 10:35:09 -0700 Subject: [PATCH] fix: remove unnecessary line of code (#4408) Removes unnecessary line of code in https://python.langchain.com/en/latest/use_cases/agent_simulations/two_agent_debate_tools.html --- docs/use_cases/agent_simulations/two_agent_debate_tools.ipynb | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/use_cases/agent_simulations/two_agent_debate_tools.ipynb b/docs/use_cases/agent_simulations/two_agent_debate_tools.ipynb index 533670c3..01beec44 100644 --- a/docs/use_cases/agent_simulations/two_agent_debate_tools.ipynb +++ b/docs/use_cases/agent_simulations/two_agent_debate_tools.ipynb @@ -178,9 +178,6 @@ " Applies the chatmodel to the message history\n", " and returns the message string\n", " \"\"\"\n", - " human_and_system_message_content = \"\\n\".join(\n", - " [self.system_message.content] + self.message_history + [self.prefix])\n", - "\n", " agent_chain = initialize_agent(\n", " self.tools, \n", " self.model, \n",