Files
wehub-resource-sync e9a2f726c9
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.13) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:29:51 +08:00

13 lines
378 B
Python

# SPDX-License-Identifier: Apache-2.0
"""
MLX Model wrappers for oMLX.
This module provides wrappers around mlx-lm and mlx-embeddings
for integration with oMLX's model execution system.
"""
from omlx.models.llm import MLXLanguageModel
from omlx.models.embedding import MLXEmbeddingModel, EmbeddingOutput
__all__ = ["MLXLanguageModel", "MLXEmbeddingModel", "EmbeddingOutput"]