Added support for FLUX.1-Kontext-dev

This commit is contained in:
Jaret Burkett
2025-06-26 15:24:37 -06:00
parent 8d9c47316a
commit 60ef2f1df7
12 changed files with 570 additions and 4 deletions

View File

@@ -2,8 +2,9 @@ from .chroma import ChromaModel
from .hidream import HidreamModel
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
ChromaModel, HidreamModel, FLiteModel, OmniGen2Model, FluxKontextModel
]