Added support for finetuning OmniGen2.

This commit is contained in:
Jaret Burkett
2025-06-25 13:58:16 -06:00
parent 5e733764aa
commit 19ea8ecc38
28 changed files with 6405 additions and 5 deletions

View File

@@ -1,8 +1,9 @@
from .chroma import ChromaModel
from .hidream import HidreamModel
from .f_light import FLiteModel
from .omnigen2 import OmniGen2Model
AI_TOOLKIT_MODELS = [
# put a list of models here
ChromaModel, HidreamModel, FLiteModel
ChromaModel, HidreamModel, FLiteModel, OmniGen2Model
]