From bbd1256afa13a2e3231735e0610aa89dbd693d9f Mon Sep 17 00:00:00 2001 From: josh-ashkinaze Date: Tue, 15 Oct 2024 13:47:22 +0000 Subject: [PATCH] deploy: c93cc500612b66d1809a77772ea3584a9e8eb444 --- _modules/plurals/deliberation.html | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/_modules/plurals/deliberation.html b/_modules/plurals/deliberation.html index 9d71dce..676158e 100644 --- a/_modules/plurals/deliberation.html +++ b/_modules/plurals/deliberation.html @@ -946,7 +946,6 @@

Source code for plurals.deliberation

             last_n=last_n,
             moderator=moderator,
         )
-        self._set_combination_instructions()
 
     @staticmethod
     def _format_previous_responses(responses: List[str]) -> str:
@@ -1006,12 +1005,6 @@ 

Source code for plurals.deliberation

                     previous_responses_str = self._format_previous_responses(
                         previous_responses_agent2[-self.last_n :]
                     )
-
-                agent.combination_instructions = (
-                    agent.combination_instructions
-                    if agent.combination_instructions
-                    else self.combination_instructions
-                )
                 response = agent.process(previous_responses=previous_responses_str)
                 response = self._strip_placeholders(response)
                 self.responses.append("[Debater {}] ".format(i + 1) + response)
@@ -1135,7 +1128,6 @@ 

Source code for plurals.deliberation

             agents=self.agents, task=task, last_n=last_n, moderator=moderator, combination_instructions=combination_instructions
         )
         self._build_graph()
-        self._set_combination_instructions()
 
     def _build_graph(self):
         """
@@ -1210,11 +1202,6 @@ 

Source code for plurals.deliberation

         # Process agents according to topological order
         response_dict = {}
         for agent in topological_order:
-            agent.combination_instructions = (
-                agent.combination_instructions
-                if agent.combination_instructions
-                else self.combination_instructions
-            )
             # Gather responses from all predecessors to form the input for the current agent
             previous_responses = [
                 response_dict[pred] for pred in self.agents if agent in self.graph[pred]