diff --git a/autogen/agentchat/groupchat.py b/autogen/agentchat/groupchat.py index a59f035fb89e..0b52716f1e55 100644 --- a/autogen/agentchat/groupchat.py +++ b/autogen/agentchat/groupchat.py @@ -208,7 +208,7 @@ def _mentioned_agents(self, message_content: str, agents: List[Agent]) -> Dict: regex = ( r"(?<=\W)" + re.escape(agent.name) + r"(?=\W)" ) # Finds agent mentions, taking word boundaries into account - count = len(re.findall(regex, " " + message_content + " ")) # Pad the message to help with matching + count = len(re.findall(regex, f" {message_content} ")) # Pad the message to help with matching if count > 0: mentions[agent.name] = count return mentions