Fixes issue #3510 - Group chat messages not sent to Studio UI. The bug is my fault. Sorry about that.

This commit is contained in:
Joe Landers 2024-09-11 16:58:57 -07:00
parent b3ef126a47
commit 1fad6bc0d3
1 changed files with 2 additions and 2 deletions

View File

@ -1027,9 +1027,9 @@ class ExtendedGroupChatManager(autogen.GroupChatManager):
silent: Optional[bool] = False,
) -> None:
if self.a_message_processor:
await self.a_message_processor(sender, self, message, request_reply, silent, sender_type="agent")
await self.a_message_processor(sender, self, message, request_reply, silent, sender_type="groupchat")
elif self.message_processor:
self.message_processor(sender, self, message, request_reply, silent, sender_type="agent")
self.message_processor(sender, self, message, request_reply, silent, sender_type="groupchat")
await super().a_receive(message, sender, request_reply, silent)
def get_human_input(self, prompt: str) -> str: