From 05cc5a5939e00b1b530a6710a889658feb3f5e0b Mon Sep 17 00:00:00 2001 From: Mark Randall Havens Date: Thu, 12 Mar 2026 23:27:14 +0000 Subject: [PATCH] Fix AutoGen GroupChatManager LLM config --- opus_orchestrator/autogen_critique.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/opus_orchestrator/autogen_critique.py b/opus_orchestrator/autogen_critique.py index 806521a..72211a6 100644 --- a/opus_orchestrator/autogen_critique.py +++ b/opus_orchestrator/autogen_critique.py @@ -130,7 +130,15 @@ You do NOT rewrite - you plan revisions. Return: {"revision_plan": [], "prioriti max_round=3, ) - self.manager = GroupChatManager(groupchat=self.group_chat) + # FIX: Add LLM config to manager + self.manager = GroupChatManager( + groupchat=self.group_chat, + llm_config={ + "model": self.model, + "api_key": self.api_key, + "temperature": 0.7, + } + ) def critique_chapter( self,