mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-01 08:25:16 -05:00
- Replace AnyModelLoader with ModelLoaderRegistry - Fix type check errors in multiple files - Remove apparently unneeded `get_model_config_enum()` method from model manager - Remove last vestiges of old model manager - Updated tests and documentation resolve conflict with seamless.py
18 lines
491 B
Python
18 lines
491 B
Python
"""Initialization file for model manager service."""
|
|
|
|
from invokeai.backend.model_manager import AnyModel, AnyModelConfig, BaseModelType, ModelType, SubModelType
|
|
from invokeai.backend.model_manager.load import LoadedModel
|
|
|
|
from .model_manager_default import ModelManagerService, ModelManagerServiceBase
|
|
|
|
__all__ = [
|
|
"ModelManagerServiceBase",
|
|
"ModelManagerService",
|
|
"AnyModel",
|
|
"AnyModelConfig",
|
|
"BaseModelType",
|
|
"ModelType",
|
|
"SubModelType",
|
|
"LoadedModel",
|
|
]
|