Update aduc_orchestrator.py
Browse files- aduc_orchestrator.py +3 -3
aduc_orchestrator.py
CHANGED
|
@@ -18,10 +18,10 @@ from typing import List, Dict, Any, Generator, Tuple
|
|
| 18 |
import gradio as gr
|
| 19 |
from PIL import Image, ImageOps
|
| 20 |
|
| 21 |
-
from
|
| 22 |
from managers.ltx_manager import ltx_manager_singleton # UPDATED IMPORT
|
| 23 |
from gemini_helpers import gemini_singleton
|
| 24 |
-
from
|
| 25 |
|
| 26 |
# The logger is configured in app.py; here we just get the instance.
|
| 27 |
logger = logging.getLogger(__name__)
|
|
@@ -85,7 +85,7 @@ class AducOrchestrator:
|
|
| 85 |
"""
|
| 86 |
self.director = AducDirector(workspace_dir)
|
| 87 |
self.editor = Deformes4DEngine(ltx_manager_singleton, workspace_dir)
|
| 88 |
-
self.painter =
|
| 89 |
logger.info("ADUC Maestro is on the podium. Musicians (specialists) are ready.")
|
| 90 |
|
| 91 |
def process_image_for_story(self, image_path: str, size: int, filename: str) -> str:
|
|
|
|
| 18 |
import gradio as gr
|
| 19 |
from PIL import Image, ImageOps
|
| 20 |
|
| 21 |
+
from enginers.deformes4D import Deformes4DEngine
|
| 22 |
from managers.ltx_manager import ltx_manager_singleton # UPDATED IMPORT
|
| 23 |
from gemini_helpers import gemini_singleton
|
| 24 |
+
from enginers.deformes3D import Deformes3DEngine
|
| 25 |
|
| 26 |
# The logger is configured in app.py; here we just get the instance.
|
| 27 |
logger = logging.getLogger(__name__)
|
|
|
|
| 85 |
"""
|
| 86 |
self.director = AducDirector(workspace_dir)
|
| 87 |
self.editor = Deformes4DEngine(ltx_manager_singleton, workspace_dir)
|
| 88 |
+
self.painter = Deformes3DEngine
|
| 89 |
logger.info("ADUC Maestro is on the podium. Musicians (specialists) are ready.")
|
| 90 |
|
| 91 |
def process_image_for_story(self, image_path: str, size: int, filename: str) -> str:
|