| """Zenith Model Wrappers for DeepSeek Base Models""" | |
| from .zenith_model import ZenithModel, ZenithForCausalLM | |
| from .adapters import LoRAAdapter, QLoRAAdapter, apply_lora | |
| from .moe_wrapper import MoEConfig, convert_dense_to_moe | |
| from .eq_adapter_wrapper import EQAdapterWrapper, FrustrationDetector, EmotionClassifier | |
| __all__ = [ | |
| "ZenithModel", | |
| "ZenithForCausalLM", | |
| "LoRAAdapter", | |
| "QLoRAAdapter", | |
| "apply_lora", | |
| "MoEConfig", | |
| "convert_dense_to_moe", | |
| "EQAdapterWrapper", | |
| "FrustrationDetector", | |
| "EmotionClassifier", | |
| ] | |