From 51614d3562debef641b9be043ada588b89fbe98d Mon Sep 17 00:00:00 2001 From: Paillat Date: Mon, 22 Apr 2024 10:21:15 +0200 Subject: [PATCH] :bulb: Remove irrelevant comment --- src/chore/GenerationContext.py | 2 -- src/engines/__init__.py | 6 ------ 2 files changed, 8 deletions(-) diff --git a/src/chore/GenerationContext.py b/src/chore/GenerationContext.py index 830e318..84f798d 100644 --- a/src/chore/GenerationContext.py +++ b/src/chore/GenerationContext.py @@ -117,6 +117,4 @@ class GenerationContext: return os.path.join(self.dir, name) def process(self): - # ⚠️ IMPORTANT NOTE: All methods called here are expected to be defined as abstract methods in the base - # classes, if not there is an issue with the engine implementation. self.pipeline.launch(self) diff --git a/src/engines/__init__.py b/src/engines/__init__.py index 9c4351b..8d24774 100644 --- a/src/engines/__init__.py +++ b/src/engines/__init__.py @@ -4,7 +4,6 @@ from . import StockImageEngine from . import BackgroundEngine from . import CaptioningEngine from . import LLMEngine -from . import SettingsEngine from . import TTSEngine from . import UploadEngine from . import AudioBackgroundEngine @@ -17,11 +16,6 @@ ENGINES: dict[str, dict[str, bool | list[BaseEngine]]] = { "classes": [Pipelines.ScriptedVideoPipeline], "multiple": False, }, - "SettingsEngine": { - "classes": [SettingsEngine.SettingsEngine], - "multiple": False, - "show_dropdown": False, - }, "SimpleLLMEngine": { "classes": [LLMEngine.OpenaiLLMEngine, LLMEngine.AnthropicLLMEngine], "multiple": False,