Added initial support for f-lite model

This commit is contained in:
Jaret Burkett
2025-05-01 11:15:18 -06:00
parent 5890e67a46
commit d9700bdb99
9 changed files with 1076 additions and 4 deletions

View File

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