mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-02-03 20:29:36 +00:00
9 lines
197 B
Python
9 lines
197 B
Python
from .chroma import ChromaModel
|
|
from .hidream import HidreamModel
|
|
from .f_light import FLiteModel
|
|
|
|
AI_TOOLKIT_MODELS = [
|
|
# put a list of models here
|
|
ChromaModel, HidreamModel, FLiteModel
|
|
]
|