removed aiia from being able to get called

This commit is contained in:
Falko Victor Habel 2025-03-26 21:25:52 +01:00
parent 96d8e18ee0
commit 1fcb31b044
1 changed files with 4 additions and 4 deletions

View File

@ -1,21 +1,21 @@
from .Model import ( from .Model import (
AIIA,
AIIABase, AIIABase,
AIIABaseShared, AIIABaseShared,
AIIAchunked, AIIAchunked,
AIIAExpert, AIIAExpert,
AIIAmoe, AIIAmoe,
AIIArecursive AIIArecursive,
AIIASparseMoe
) )
from .config import AIIAConfig from .config import AIIAConfig
__all__ = [ __all__ = [
"AIIA",
"AIIABase", "AIIABase",
"AIIABaseShared", "AIIABaseShared",
"AIIAchunked", "AIIAchunked",
"AIIAExpert", "AIIAExpert",
"AIIAmoe", "AIIAmoe",
"AIIArecursive", "AIIArecursive",
"AIIAConfig" "AIIAConfig",
"AIIASparseMoe"
] ]