mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
Add SettingsEngine to ENGINES dictionary
This commit is contained in:
@@ -6,7 +6,7 @@ from . import ScriptEngine
|
||||
from . import LLMEngine
|
||||
from . import CaptioningEngine
|
||||
from . import AssetsEngine
|
||||
|
||||
from . import SettingsEngine
|
||||
|
||||
class EngineDict(TypedDict):
|
||||
classes: list[BaseEngine]
|
||||
@@ -14,6 +14,12 @@ class EngineDict(TypedDict):
|
||||
|
||||
|
||||
ENGINES: dict[str, EngineDict] = {
|
||||
"SettingsEngine": {
|
||||
"classes": [SettingsEngine.SettingsEngine],
|
||||
"multiple": False,
|
||||
"show_dropdown": False,
|
||||
},
|
||||
|
||||
"SimpleLLMEngine": {
|
||||
"classes": [LLMEngine.OpenaiLLMEngine, LLMEngine.AnthropicLLMEngine],
|
||||
"multiple": False,
|
||||
|
||||
Reference in New Issue
Block a user