From 49835180397bf94cb3e6ef5408166519b0df2122 Mon Sep 17 00:00:00 2001 From: CI-DEV <154627941+IlumCI@users.noreply.github.com> Date: Tue, 19 Aug 2025 14:16:58 +0300 Subject: [PATCH] Update hierarchical_structured_communication_framework.py --- ...ical_structured_communication_framework.py | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/swarms/structs/hierarchical_structured_communication_framework.py b/swarms/structs/hierarchical_structured_communication_framework.py index a9e216a4..377dde90 100644 --- a/swarms/structs/hierarchical_structured_communication_framework.py +++ b/swarms/structs/hierarchical_structured_communication_framework.py @@ -1665,21 +1665,6 @@ Please refine the content to address the feedback while maintaining its core str # Main framework class HierarchicalStructuredCommunicationSwarm = HierarchicalStructuredCommunicationFramework -# Agent classes for easy import -TalkHierarchicalGenerator = HierarchicalStructuredCommunicationGenerator -TalkHierarchicalEvaluator = HierarchicalStructuredCommunicationEvaluator -TalkHierarchicalRefiner = HierarchicalStructuredCommunicationRefiner -TalkHierarchicalSupervisor = HierarchicalStructuredCommunicationSupervisor - -# Schema classes -TalkHierarchicalSchemas = { - "StructuredMessage": StructuredMessageSchema, - "EvaluationResult": EvaluationResultSchema, - "GeneratorResponse": GeneratorResponseSchema, - "EvaluatorResponse": EvaluatorResponseSchema, - "RefinerResponse": RefinerResponseSchema, -} - # Export all components __all__ = [ # Main framework @@ -1692,12 +1677,6 @@ __all__ = [ "HierarchicalStructuredCommunicationRefiner", "HierarchicalStructuredCommunicationSupervisor", - # Convenience aliases - "TalkHierarchicalGenerator", - "TalkHierarchicalEvaluator", - "TalkHierarchicalRefiner", - "TalkHierarchicalSupervisor", - # Data models "StructuredMessage", "HierarchicalOrder", @@ -1713,7 +1692,4 @@ __all__ = [ # Enums "CommunicationType", "AgentRole", - - # Schema collection - "TalkHierarchicalSchemas", ]