File size: 362 Bytes
b596b84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# MaplePT-Mini (v1)
# Sovereign Canadian Language Model by CanXP AI
# Licensed under MIT License
from .configuration_maplept import MaplePTConfig
from .modeling_maplept import MaplePTForCausalLM
__all__ = [
"MaplePTConfig",
"MaplePTForCausalLM",
]
__version__ = "1.0.0"
__author__ = "CanXP AI"
__copyright__ = "© 2025 CanXP AI. All Rights Reserved."
|