""" | |
DeepSeek Mixture of Experts Implementation | |
Copyright (c) 2025 | |
Implementation of the Mixture of Experts mechanism from the DeepSeek-V2 paper. | |
""" | |
from .moe import Expert, MixtureOfExperts | |
__version__ = "0.1.0" | |
__all__ = ["Expert", "MixtureOfExperts"] |