Update aduc_orchestrator.py
Browse files- aduc_orchestrator.py +3 -3
aduc_orchestrator.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
#
|
| 3 |
# Copyright (C) August 4, 2025 Carlos Rodrigues dos Santos
|
| 4 |
#
|
| 5 |
-
# Version: 2.
|
| 6 |
#
|
| 7 |
# This file contains the core ADUC (Automated Discovery and Orchestration of Complex tasks)
|
| 8 |
# orchestrator, known as the "Maestro" (Γ). Its responsibility is to manage the high-level
|
|
@@ -20,7 +20,7 @@ from PIL import Image, ImageOps
|
|
| 20 |
|
| 21 |
from engineers.deformes4D import Deformes4DEngine
|
| 22 |
from managers.gemini_manager import gemini_manager_singleton
|
| 23 |
-
from engineers.deformes3D import
|
| 24 |
|
| 25 |
# The logger is configured in app.py; here we just get the instance.
|
| 26 |
logger = logging.getLogger(__name__)
|
|
@@ -84,7 +84,7 @@ class AducOrchestrator:
|
|
| 84 |
"""
|
| 85 |
self.director = AducDirector(workspace_dir)
|
| 86 |
self.editor = Deformes4DEngine(workspace_dir)
|
| 87 |
-
self.painter =
|
| 88 |
logger.info("ADUC Maestro is on the podium. Musicians (specialists) are ready.")
|
| 89 |
|
| 90 |
def process_image_for_story(self, image_path: str, size: int, filename: str) -> str:
|
|
|
|
| 2 |
#
|
| 3 |
# Copyright (C) August 4, 2025 Carlos Rodrigues dos Santos
|
| 4 |
#
|
| 5 |
+
# Version: 2.1.1
|
| 6 |
#
|
| 7 |
# This file contains the core ADUC (Automated Discovery and Orchestration of Complex tasks)
|
| 8 |
# orchestrator, known as the "Maestro" (Γ). Its responsibility is to manage the high-level
|
|
|
|
| 20 |
|
| 21 |
from engineers.deformes4D import Deformes4DEngine
|
| 22 |
from managers.gemini_manager import gemini_manager_singleton
|
| 23 |
+
from engineers.deformes3D import deformes3d_engine_singleton
|
| 24 |
|
| 25 |
# The logger is configured in app.py; here we just get the instance.
|
| 26 |
logger = logging.getLogger(__name__)
|
|
|
|
| 84 |
"""
|
| 85 |
self.director = AducDirector(workspace_dir)
|
| 86 |
self.editor = Deformes4DEngine(workspace_dir)
|
| 87 |
+
self.painter = deformes3d_engine_singleton
|
| 88 |
logger.info("ADUC Maestro is on the podium. Musicians (specialists) are ready.")
|
| 89 |
|
| 90 |
def process_image_for_story(self, image_path: str, size: int, filename: str) -> str:
|