File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 7575from invokeai .app .services .shared .invocation_context import InvocationContext
7676from invokeai .app .services .workflow_records .workflow_records_common import WorkflowWithoutID
7777from invokeai .app .util .misc import SEED_MAX , get_random_seed
78+ from invokeai .backend .model_manager .configs .factory import AnyModelConfig , ModelConfigFactory
7879from invokeai .backend .model_manager .load .load_base import LoadedModel
80+ from invokeai .backend .model_manager .taxonomy import (
81+ BaseModelType ,
82+ ClipVariantType ,
83+ FluxLoRAFormat ,
84+ FluxVariantType ,
85+ ModelFormat ,
86+ ModelSourceType ,
87+ ModelType ,
88+ ModelVariantType ,
89+ SchedulerPredictionType ,
90+ SubModelType ,
91+ )
7992from invokeai .backend .stable_diffusion .diffusers_pipeline import PipelineIntermediateState
8093from invokeai .backend .stable_diffusion .diffusion .conditioning_data import (
8194 BasicConditioningInfo ,
184197 # invokeai.app.util.misc
185198 "SEED_MAX" ,
186199 "get_random_seed" ,
200+ # invokeai.backend.model_manager.taxonomy
201+ "BaseModelType" ,
202+ "ModelType" ,
203+ "ModelSourceType" ,
204+ "ModelFormat" ,
205+ "ModelVariantType" ,
206+ "SchedulerPredictionType" ,
207+ "SubModelType" ,
208+ "ClipVariantType" ,
209+ "FluxLoRAFormat" ,
210+ "FluxVariantType" ,
211+ # invokeai.backend.model_manager.configs.factory
212+ "AnyModelConfig" ,
213+ "ModelConfigFactory" ,
187214]
You can’t perform that action at this time.
0 commit comments