Skip to content

Commit

Permalink
moved DEFAULT_CONFIG inside init
Browse files Browse the repository at this point in the history
  • Loading branch information
brnaba-aws committed Oct 16, 2024
1 parent 0aac968 commit 91a7506
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/src/multi_agent_orchestrator/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
BedrockLLMAgentOptions)
from multi_agent_orchestrator.storage import ChatStorage, InMemoryChatStorage

DEFAULT_CONFIG=OrchestratorConfig()

@dataclass
class MultiAgentOrchestrator:
def __init__(self,
Expand All @@ -24,6 +22,8 @@ def __init__(self,
classifier: Optional[Classifier] = None,
logger: Optional[Logger] = None):

DEFAULT_CONFIG=OrchestratorConfig()

if options is None:
options = {}
if isinstance(options, dict):
Expand Down

0 comments on commit 91a7506

Please sign in to comment.