Metadata-Version: 2.1
Name: mlx-moe
Version: 0.0.2
Summary: A tool to generate text with mlx-moe model.
Home-page: https://github.com/yourusername/yourproject
Author: Your Name
Author-email: your.email@example.com
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: mlx>=0.1.0
Requires-Dist: mlx-lm==0.0.6

# MLX-MOE Models Package

The `mlx-moe` package offers custom MLX Mixture of Experts (MoE) models, streamlining the process of leveraging sophisticated MoE models for text generation, particularly in conjunction with the `mlx-lm` package. This tool is designed for developers and researchers who require advanced text generation capabilities, providing an easy pathway to utilize and integrate MoE models into their projects.

## Features

- **Custom MoE Model Support**: Easily load and utilize your custom MLX MoE models for text generation.
- **Easy Installation**: Get started quickly with a simple pip installation command.

## Installation

To install `mlx-moe`, simply run the following command in your terminal:

```shell
pip install mlx-moe
```

## Usage

The `mlx-moe` package is designed to be used in conjunction with the mlx-lm package for generating text. After installing mlx-moe, you can load your custom MoE models as follows:
```
from mlx_moe.load import load_moe

model_path = "path_to_your_model"
model = load_moe(model_path)
```
