Added initial support for Hidream E1 training

This commit is contained in:
Jaret Burkett
2025-07-27 15:12:56 -06:00
parent 3f518d9951
commit cefa2ca5fe
6 changed files with 1410 additions and 7 deletions

View File

@@ -1,10 +1,15 @@
from .chroma import ChromaModel
from .hidream import HidreamModel
from .hidream import HidreamModel, HidreamE1Model
from .f_light import FLiteModel
from .omnigen2 import OmniGen2Model
from .flux_kontext import FluxKontextModel
AI_TOOLKIT_MODELS = [
# put a list of models here
ChromaModel, HidreamModel, FLiteModel, OmniGen2Model, FluxKontextModel
ChromaModel,
HidreamModel,
HidreamE1Model,
FLiteModel,
OmniGen2Model,
FluxKontextModel
]