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 LLMEngine
|
||||||
from . import CaptioningEngine
|
from . import CaptioningEngine
|
||||||
from . import AssetsEngine
|
from . import AssetsEngine
|
||||||
|
from . import SettingsEngine
|
||||||
|
|
||||||
class EngineDict(TypedDict):
|
class EngineDict(TypedDict):
|
||||||
classes: list[BaseEngine]
|
classes: list[BaseEngine]
|
||||||
@@ -14,6 +14,12 @@ class EngineDict(TypedDict):
|
|||||||
|
|
||||||
|
|
||||||
ENGINES: dict[str, EngineDict] = {
|
ENGINES: dict[str, EngineDict] = {
|
||||||
|
"SettingsEngine": {
|
||||||
|
"classes": [SettingsEngine.SettingsEngine],
|
||||||
|
"multiple": False,
|
||||||
|
"show_dropdown": False,
|
||||||
|
},
|
||||||
|
|
||||||
"SimpleLLMEngine": {
|
"SimpleLLMEngine": {
|
||||||
"classes": [LLMEngine.OpenaiLLMEngine, LLMEngine.AnthropicLLMEngine],
|
"classes": [LLMEngine.OpenaiLLMEngine, LLMEngine.AnthropicLLMEngine],
|
||||||
"multiple": False,
|
"multiple": False,
|
||||||
|
|||||||
Reference in New Issue
Block a user