mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
8 lines
153 B
Python
8 lines
153 B
Python
from .chroma import ChromaModel
|
|
from .hidream import HidreamModel
|
|
|
|
AI_TOOLKIT_MODELS = [
|
|
# put a list of models here
|
|
ChromaModel, HidreamModel
|
|
]
|